-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.12 KB
/
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
from setuptools import setup
from ast import literal_eval
with open('steganon/version.py', encoding='utf-8') as f:
version = literal_eval(f.read().split('=',1)[1].strip())
setup(
name = 'steganon',
version = version,
license = 'LGPL-2.1',
description = 'Steganography LSB (with PRNG by seed)',
long_description = open('README.md', encoding='utf-8').read(),
author = 'NonProjects',
author_email = 'thenonproton@pm.me',
url = 'https://github.com/NonProjects/steganon',
packages = ['steganon', 'steganon.cli'],
install_requires = ['pillow'],
extras_require = {
'cli': ['click==8.1.7']
},
long_description_content_type = 'text/markdown',
keywords = ['Steganography', 'LSB', 'Cryptography'],
entry_points='''
[console_scripts]
steganon-cli=steganon.cli.steganon_cli:safe_steganon_cli_startup
''',
classifiers = [
'Intended Audience :: Developers',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)'
]
)