-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.02 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
import setuptools
with open('README.md', 'r') as README:
long_description = README.read()
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
'Topic :: Security :: Cryptography',
'Natural Language :: English',
'Environment :: Console',
]
setuptools.setup(
name="Num6",
version="0.4.0",
description="Num6 - An cryptography tool for Python 3 (open source).",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/almas-ali/num6",
author="Md. Almas Ali",
author_email="almaspr3@gmail.com",
keyword="Encrypter, Decrypter, Num6",
license="MIT",
classifiers=classifiers,
packages=setuptools.find_packages(),
install_requires=[],
entry_points='''
[console_scripts]
num6=num6.cli:main_cli
'''
)