-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
30 lines (29 loc) · 1.01 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
from distutils.core import setup
setup(
name="jager",
version="0.1",
description="Pull IOCs from documents",
url="https://github.com/yolothreat/jager",
license="MIT",
include_package_data=True,
install_requires=['aspy.yaml==0.2.1',
'beautifulsoup4==4.3.2',
'cached-property==1.0.0',
'jsonschema==2.4.0',
'netaddr==0.7.12',
'nodeenv==0.12.3',
'ordereddict==1.1',
'pdfminer==20140328',
'pre-commit==0.3.6',
'pygeoip==0.3.2',
'python-magic==0.4.6',
'PyYAML==5.4',
'requests>=2.20.0',
'simplejson==3.6.5',
'pytest>=2.7.0',
'pytest-cov>=1.8.1',
'cnd-utilitybelt==0.2.1'
],
package_dir={'jager': 'src'},
packages=['jager']
)