-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
138 lines (126 loc) · 3.22 KB
/
Copy pathpyproject.toml
File metadata and controls
138 lines (126 loc) · 3.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[project]
name = "bugfinder"
version = "0.2.0"
description = "AI-powered autonomous bug bounty assistant and security assessment platform"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "highoncomputers" },
]
keywords = ["security", "bug-bounty", "penetration-testing", "vulnerability-scanner", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Software Development :: Bug Tracking",
]
dependencies = [
"typer>=0.15.0",
"textual>=3.0.0",
"httpx>=0.28.0",
"sqlalchemy>=2.0.0",
"alembic>=1.14.0",
"aiosqlite>=0.20.0",
"networkx>=3.4.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"rich>=13.9.0",
"pyyaml>=6.0.0",
"jinja2>=3.1.0",
"importlib-metadata>=8.0.0",
"python-dotenv>=1.0.0",
"platformdirs>=4.3.0",
"orjson>=3.10.0",
"structlog>=24.4.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"python-multipart>=0.0.18",
"itsdangerous>=2.2.0",
"apscheduler>=3.11.0",
"aiofiles>=24.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"pytest-httpx>=0.35.0",
"ruff>=0.8.0",
"mypy>=1.14.0",
"pre-commit>=4.0.0",
"sphinx>=8.0.0",
"sphinx-rtd-theme>=3.0.0",
]
web = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"python-multipart>=0.0.18",
"itsdangerous>=2.2.0",
"aiofiles>=24.1.0",
]
postgres = [
"psycopg2-binary>=2.9.0",
"asyncpg>=0.30.0",
]
pdf = [
"weasyprint>=63.0",
]
android = [
"androguard>=3.4.0",
]
notifications = [
"email-validator>=2.2.0",
"httpx>=0.28.0",
]
celery = [
"celery>=5.4.0",
"redis>=5.2.0",
]
all = [
"bugfinder[web,postgres,pdf,android,notifications,celery]",
]
[project.scripts]
bugfinder = "bugfinder.cli.launcher:app"
bf = "bugfinder.cli.commands:app"
bf-web = "bugfinder.web.app:main"
[project.entry-points."bugfinder.plugins"]
example = "bugfinder.plugins.example"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bugfinder"]
[tool.hatch.build.targets.sdist]
include = ["bugfinder/", "tests/"]
[tool.hatch.build.targets.wheel.force-include]
"bugfinder/web/static" = "bugfinder/web/static"
"bugfinder/web/templates" = "bugfinder/web/templates"
[tool.ruff]
line-length = 130
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
warn_unused_ignores = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"web: marks tests requiring web server",
"integration: marks integration tests",
]