forked from nccgroup/featherduster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 675 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='featherduster',
version='0.3',
description='An automated cryptanalysis tool',
url='http://github.com/nccgroup/featherduster',
author='Daniel "unicornfurnace" Crowley',
license='BSD',
#packages=['cryptanalib','feathermodules','featherduster'],
packages=find_packages(exclude=['examples','tests']),
install_requires=[
'gmpy',
'pycrypto',
'ishell'
],
entry_points = {
'console_scripts': ['featherduster=featherduster.featherduster:main'],
},
zip_safe=False)