forked from Te-k/harpoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (55 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
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='tek@randhome.io',
keywords='osint',
include_package_data=True,
dependency_links=[
'git+https://github.com/Te-k/pycrtsh.git@master#egg=0.1#pycrtsh-0.1',
'git+https://github.com/Te-k/pysafe.git@master#egg=pysafe-0.1',
'git+https://github.com/Te-k/spyonweb.git@master#egg=spyonweb-0.1',
'git+https://github.com/Te-k/pygreynoise.git@master#egg=pygreynoise-0.1',
'git+https://github.com/Te-k/pythreatgrid.git@master#egg=pythreatgrid-0.1',
'git+https://github.com/kneufeld/consolemd.git@master#egg=consolemd-0.4.0'
],
install_requires=[
'requests',
'configparser',
'tweepy',
'passivetotal',
'beautifulsoup4',
'lxml',
'censys',
'pycrtsh',
'shodan',
'fullcontact.py',
'pyhunter',
'pysafe',
'PyGitHub',
'telethon',
'virustotal-api',
'mispy',
'OTXv2',
'IPy',
'pyasn',
'spyonweb',
'selenium',
'geoip2',
'pygreynoise',
'dnspython',
'pythreatgrid',
'consolemd'
],
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' ]
}
)