|
1 | 1 | #!/usr/bin/env python3 |
2 | | -# -*- coding:utf-8 -*- |
3 | 2 |
|
4 | | -from distutils.core import setup |
| 3 | +from setuptools import setup |
5 | 4 |
|
6 | 5 | import xortool |
7 | 6 |
|
|
15 | 14 | url='https://github.com/hellman/xortool', |
16 | 15 | description='Tool for xor cipher analysis', |
17 | 16 | long_description=open("README.md").read(), # not in rst, but something |
| 17 | + long_description_content_type="text/markdown", |
18 | 18 | keywords="xor xortool analysis", |
19 | 19 |
|
20 | 20 | packages=['xortool'], |
21 | 21 | provides=['xortool'], |
22 | 22 | install_requires=['docopt>=0.6.1'], |
| 23 | + setup_requires=['wheel'], |
23 | 24 | scripts=["xortool/xortool", "xortool/xortool-xor"], |
24 | 25 |
|
| 26 | + python_requires='>=3', |
25 | 27 | classifiers=['Development Status :: 4 - Beta', |
26 | 28 | 'Intended Audience :: Science/Research', |
27 | 29 | 'Intended Audience :: Information Technology', |
28 | 30 | 'Natural Language :: English', |
29 | 31 | 'Operating System :: OS Independent', |
30 | | - 'Programming Language :: Python :: 2', |
31 | 32 | 'Programming Language :: Python :: 3', |
32 | 33 | 'License :: OSI Approved :: MIT License', |
33 | 34 | 'Topic :: Scientific/Engineering :: Mathematics', |
|
0 commit comments