-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1004 Bytes
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 1004 Bytes
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
[project]
name = "scanner"
version = "0.1.0"
description = "Active Scanner for Mitmproxy2Swagger"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"playwright>=1.49.1",
"beautifulsoup4>=4.12.3",
"mitmproxy>=10.4.2",
"httpx>=0.28.1",
"pyyaml>=6.0.2",
"ruamel.yaml>=0.18.6",
"mitmproxy2swagger @ git+https://github.com/knowlet/mitmproxy2swagger",
]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pre-commit>=4.0.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-httpx>=0.30.0",
"pytest-cov>=7.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
scanner = "scanner.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/scanner"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "C4", "UP"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"