-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 920 Bytes
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 920 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
52
53
[project]
name = "quickxss"
version = "3.0.1"
description = "Automate XSS workflows with waybackurls, gau, gf, and dalfox."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [
{ name = "theinfosecguy" }
]
dependencies = [
"typer>=0.12.0",
"pyfiglet>=1.0.2",
]
[project.scripts]
quickxss = "quickxss.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"isort>=5.13.0",
"ruff>=0.6.0",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
markers = [
"integration: external tool and network tests",
]
[tool.ruff]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"quickxss",
"quickxss.cli",
"quickxss.constants",
"quickxss.models",
"quickxss.scan",
"quickxss.setup",
"quickxss.utils",
]