-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1005 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='inck',
version='1.0.0',
description="Simple spatial domain Steganography, made a CLI tool. Because... Why not?",
long_description_content_type="text/markdown",
long_description=long_description,
author='EterDelta',
license='MIT',
url='https://github.com/EterDelta/Inck',
package_dir={'': 'src'},
packages=[
'inck'
],
install_requires=[
'Pillow'
],
entry_points={
'console_scripts': [
"inck = inck.cli:entry",
],
},
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
python_requires='>=3.6'
)