-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
24 lines (23 loc) · 879 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
from setuptools import find_packages, setup
setup(
name='zwsp-steg-py',
version=__import__('zwsp_steg').__version__,
description='Zero-Width Space Steganography, encodes/decodes hidden messages as non printable/readable characters.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Edoardo Nodari',
author_email='[email protected]',
url='https://github.com/enodari/zwsp-steg-py',
packages=find_packages(),
include_package_data=True,
license='Apache 2.0',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
)