-
Notifications
You must be signed in to change notification settings - Fork 173
/
setup.py
37 lines (30 loc) · 1.24 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
36
37
#!/usr/bin/env python3
from setuptools import setup
import xortool
setup(name='xortool',
version=xortool.__version__,
author='hellman',
author_email='[email protected]',
license="MIT",
url='https://github.com/hellman/xortool',
description='Tool for xor cipher analysis',
long_description=open("README.md").read(), # not in rst, but something
long_description_content_type="text/markdown",
keywords="xor xortool analysis",
packages=['xortool'],
provides=['xortool'],
install_requires=['docopt>=0.6.1'],
setup_requires=['wheel'],
scripts=["xortool/xortool", "xortool/xortool-xor"],
python_requires='>=3',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Security :: Cryptography',
],
)