forked from Te-k/harpoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (61 loc) · 1.61 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup
setup(
name='harpoon',
version='0.1.1',
description='Another OSINT CLI tool',
url='https://github.com/Te-k/harpoon',
author='Tek',
author_email='[email protected]',
keywords='osint',
include_package_data=True,
dependency_links=[
'git+https://github.com/Te-k/pysafe.git@master#egg=pysafe-0.1',
'git+https://github.com/Te-k/pygreynoise.git@master#egg=pygreynoise-0.1',
'git+https://github.com/Te-k/pypermacc.git@master#egg=pypermacc-0.0.1'
],
install_requires=[
'click==6.7',
'requests',
'configparser',
'tweepy',
'passivetotal',
'beautifulsoup4',
'lxml',
'censys',
'pycrtsh',
'shodan',
'fullcontact.py',
'pyhunter',
'pysafe',
'PyGitHub',
'telethon==0.18.3',
'virustotal-api',
'mispy',
'OTXv2',
'IPy',
'maxminddb>=1.4.0',
'pyasn',
'spyonweb',
'selenium',
'geoip2',
'pygreynoise',
'dnspython',
'pythreatgrid',
'consolemd==0.4.4',
'pypermacc',
'archiveis',
'pypdns==1.3',
'pybinaryedge==0.2',
'spyonweb==0.1',
'pythreatgrid2==0.1.1',
'pycrtsh==0.1'
],
python_requires='>=3.5',
license='GPLv3',
packages=['harpoon', 'harpoon.commands', 'harpoon.lib', 'harpoon.data'],
package_dir={'harpoon.lib': 'harpoon/lib'},
package_data={'harpoon': ['harpoon/data/*.conf']},
entry_points= {
'console_scripts': [ 'harpoon=harpoon.main:main' ]
}
)