Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mxrch
GitHub Repository: mxrch/GHunt
Path: blob/master/pyproject.toml
252 views
1
[project]
2
name = "ghunt"
3
version = "2.3.3"
4
authors = [
5
{name = "mxrch", email = "[email protected]"},
6
]
7
description = "An offensive Google framework."
8
readme = "README.md"
9
requires-python = ">=3.10"
10
license = {text = "AGPL-3.0"}
11
classifiers = [
12
"Programming Language :: Python :: 3",
13
]
14
dynamic = ["dependencies"]
15
keywords=["osint", "pentest", "cybersecurity", "investigation", "hideandsec", "malfrats"]
16
17
[tool.setuptools.dynamic]
18
dependencies = {file = ["requirements.txt"]}
19
20
[tool.poetry.scripts]
21
ghunt = "ghunt.ghunt:main"
22
23
[tool.setuptools.packages.find]
24
include = ["ghunt", "ghunt.*"]
25
26
[project.urls]
27
"Homepage" = "https://github.com/mxrch/GHunt"
28
"Bug Reports" = "https://github.com/mxrch/GHunt/issues"
29
"Funding" = "https://github.com/sponsors/mxrch"
30
"Source" = "https://github.com/mxrch/GHunt"
31
32
[tool.poetry]
33
name = "ghunt"
34
version = "2.3.3"
35
description = "An offensive Google framework."
36
authors = ["mxrch <[email protected]>"]
37
license = "AGPL-3.0"
38
readme = "README.md"
39
40
[tool.poetry.dependencies]
41
python = "^3.11"
42
geopy = "^2.4.1"
43
httpx = {extras = ["http2"], version = "^0.27.2"}
44
imagehash = "^4.3.1"
45
pillow = "^10.4.0"
46
python-dateutil = "^2.9.0.post0"
47
rich = "^13.9.1"
48
beautifultable = "^1.1.0"
49
beautifulsoup4 = "^4.12.3"
50
alive-progress = "^3.1.5"
51
protobuf = "^5.28.2"
52
autoslot = "^2022.12.1"
53
humanize = "^4.10.0"
54
inflection = "^0.5.1"
55
jsonpickle = "^3.3.0"
56
packaging = "^24.1"
57
rich-argparse = "^1.5.2"
58
dnspython = "^2.7.0"
59
60
61
[build-system]
62
requires = ["poetry-core"]
63
build-backend = "poetry.core.masonry.api"
64
65