-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (24 loc) · 1.03 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
from distutils.command.build_py import build_py as _build_py
from distutils.core import setup
from subprocess import call
from setuptools import find_packages, setup
# class build_py(_build_py):
# """Preparse and rename to .py all sage files to make them importable"""
# print("Preparsing sage files")
# call(['bash', './preparse_sage.bash'])
setup(name='CryptoAttacks',
version='0.1',
description='Implementation of some cryptography attacks',
url='https://github.com/GrosQuildu/CryptoAttacks',
author='Gros Quildu',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
# cmdclass={'build_py': build_py},
install_requires=('future', 'pycrypto', 'gmpy2', 'BeautifulSoup4', 'requests', 'termcolor'),
classifiers=('Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License')
)