-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathsetup.py
68 lines (66 loc) · 1.86 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
68
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="harpoon",
version="0.1.7",
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 threatintel",
include_package_data=True,
install_requires=[
"requests",
"configparser",
"passivetotal>=2.5.9",
"beautifulsoup4>=4.12.3",
"lxml==5.3.0",
"censys==2.2.0",
"shodan",
"fullcontact.py",
"pyhunter",
"PyGitHub>=1.55",
"telethon==0.19.1.6",
"virustotal-api",
"pymisp==2.4.159",
"OTXv2",
"IPy",
"maxminddb>=1.4.0",
"pyasn",
"spyonweb==0.1",
"selenium",
"geoip2",
"dnspython",
"consolemd==0.5.1",
"pypermacc==0.1.1",
"archiveis",
"pytz",
"pypdns==1.3",
"pybinaryedge==0.5",
"spyonweb==0.1",
"pythreatgrid2==0.1.1",
"pycrtsh==0.3.12",
"pysafebrowsing==0.1.2",
"pysecuritytrails==0.1.3",
"phonenumbers==8.12.4",
"threatminer==1.0",
"zetalytics-api==1.0.1",
"greynoise>=1.2.0",
"pyhashlookup==1.2.1",
"simplejson==3.17.6"
],
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",
],
)