-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
100 lines (74 loc) · 2.77 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# https://packaging.python.org/en/latest/distributing.html
# https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
from codecs import open
from os import path, system
import sys, re
here = path.abspath(path.dirname(__file__))
# load __version__, __doc__, _author, _license and _url
exec(open(path.join(here, 'cryptonita', '__init__.py')).read())
here = path.abspath(path.dirname(__file__))
try:
system('''pandoc -f markdown-raw_html -o '%(dest_rst)s' '%(src_md)s' ''' % {
'dest_rst': path.join(here, 'README.rst'),
'src_md': path.join(here, 'README.md'),
})
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# strip out any HTML comment|tag
long_description = re.sub(r'<!--.*?-->', '', long_description,
flags=re.DOTALL|re.MULTILINE)
long_description = re.sub(r'<img.*?src=.*?>', '', long_description,
flags=re.DOTALL|re.MULTILINE)
with open(path.join(here, 'README.rst'), 'w', encoding='utf-8') as f:
f.write(long_description)
except:
print("Generation of the documentation failed. " + \
"Do you have 'pandoc' installed?")
long_description = __doc__
install_deps = [
'base58',
]
extra_deps = {
'full' : [
'matplotlib',
'numpy',
'seaborn',
'pycryptodome',
'aspell-python-py3', # apt-get install libaspell-dev
'scipy',
'langdetect',
'gmpy2', # apt-get install libgmp-dev libmpc-dev libmpfr-dev
'z3-solver',
]
}
setup(
name='cryptonita',
version=__version__,
description=__doc__,
long_description=long_description,
#url=_url,
# Author details
author=_author,
author_email='[email protected]',
license=_license,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
# Let setuptools to find all the packages (aka modules and submodules)
# automatically for us
packages=find_packages(),
python_requires='>=3.3',
install_requires=install_deps,
extras_require=extra_deps,
keywords='crypto cryptography crypto-analysis',
)