forked from krmaxwell/maltrieve
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 loc) · 890 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='maltrieve',
version='0.7',
description="A tool to retrieve malware directly from the source for security researchers.",
author='Kyle Maxwell',
author_email='krmaxwell@gmail.com',
url='http://maltrieve.org',
install_requires=[
'argparse>=1.2.1',
'beautifulsoup4>=4.3.2',
'feedparser>=5.1.3',
'gevent>=1.0.1',
'greenlet>=0.4.2',
'grequests>=0.2.0',
'python-magic>=0.4.6',
'requests>=2.3.0',
'wsgiref>=0.1.2',
'pre-commit',
'pytest',
'pytest-cov',
'coveralls',
'LinkChecker',
'markdown'
],
package_dir={'maltrieve': 'src'},
packages=['maltrieve'],
entry_points={'console_scripts': ['maltrieve = maltrieve:main']})