-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.48 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wafw00f"
dynamic = ["version"]
description = "The Web Application Firewall Fingerprinting Toolkit"
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{name = "Sandro Gauci", email = "sandro@enablesecurity.com"}
]
keywords = ["waf", "firewall", "detector", "fingerprint"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Internet",
"Topic :: Security",
"Topic :: System :: Networking :: Firewalls",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"requests",
"requests[socks]",
]
[project.optional-dependencies]
dev = ["prospector", "pytest", "pytest-mock", "responses"]
docs = ["Sphinx"]
[project.urls]
Homepage = "https://github.com/enablesecurity/wafw00f"
"Bug Tracker" = "https://github.com/EnableSecurity/wafw00f/issues"
Documentation = "https://github.com/EnableSecurity/wafw00f/wiki"
"Source Code" = "https://github.com/EnableSecurity/wafw00f/tree/master"
[project.scripts]
wafw00f = "wafw00f.main:main"
[tool.setuptools.dynamic]
version = {attr = "wafw00f.__version__"}
[tool.setuptools.packages.find]
include = ["wafw00f*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v"