-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (61 loc) · 1.79 KB
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
69
70
71
[project]
name = "geminihunter"
dynamic = ["version"]
description = "Bug bounty tool to discover, validate, and bypass Google Gemini API keys"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
authors = [{name = "devploit"}]
keywords = ["security", "bug-bounty", "gemini", "api-keys", "android"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
]
dependencies = [
"httpx[http2]>=0.27",
"h2>=4.4.1",
"click>=8.1",
"rich>=13.0",
"pydantic>=2.0",
"jsbeautifier>=1.15",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
"ruff>=0.4",
"build>=1.2",
"twine>=6.0",
]
[project.urls]
Homepage = "https://github.com/devploit/geminiHunter"
Repository = "https://github.com/devploit/geminiHunter"
Issues = "https://github.com/devploit/geminiHunter/issues"
[project.scripts]
geminihunter = "geminihunter.cli:main"
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/geminihunter"]
[tool.hatch.version]
path = "src/geminihunter/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/assets", "/docs", "/*.md", "/pyproject.toml", "/LICENSE"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "strict"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
# Keep the established rule set stable across Ruff default changes.
select = ["E4", "E7", "E9", "F"]