forked from SuperCowPowers/data_hacking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·21 lines (18 loc) · 848 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup
from data_hacking import __version__
setup(name='data_hacking',
version=__version__,
author='Click',
author_email='clicklabs@clicksecurity.com',
description='Modules for Data Hacking project',
long_description=open('README.md').read(),
install_requires=[ 'networkx','pygraphviz','pandas','matplotlib','numpy','tldextract','sqlparse','macholib','pefile','patsy','statsmodels','sklearn' ],
url='http://clicksecurity.github.io/data_hacking',
packages=['data_hacking', 'data_hacking.min_hash','data_hacking.lsh_sims',
'data_hacking.hcluster','data_hacking.simple_stats','data_hacking.yara_signature'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
]
)