forked from Te-k/harpoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (64 loc) · 1.7 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
64
65
66
67
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='harpoon',
version='0.1.3',
description='Another OSINT CLI tool',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Te-k/harpoon',
author='Tek',
author_email='[email protected]',
keywords='osint',
include_package_data=True,
install_requires=[
'click==6.7',
'requests',
'configparser',
'tweepy',
'passivetotal',
'beautifulsoup4==4.7.0',
'lxml==4.2.6',
'censys',
'pycrtsh',
'shodan',
'fullcontact.py',
'pyhunter',
'PyGitHub',
'telethon==0.18.3',
'virustotal-api',
'mispy',
'OTXv2',
'IPy',
'maxminddb>=1.4.0',
'pyasn',
'spyonweb==0.1',
'selenium',
'geoip2',
'pygreynoisev1==0.1',
'dnspython',
'consolemd==0.4.4',
'pypermacc==0.1.1',
'archiveis',
'pypdns==1.3',
'pybinaryedge==0.3',
'spyonweb==0.1',
'pythreatgrid2==0.1.1',
'pycrtsh==0.1',
'pysafebrowsing==0.1.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' ]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)