-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.86 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "headersvalidator"
version = "0.1.4"
description = "HTTP response header validator — RFC 9110, RFC 9111, OWASP, IANA"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
"cybersecurity",
"security-audit",
"http",
"headers",
"security",
"owasp",
"rfc9110",
"rfc9111",
"iana",
"cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"requests>=2.31",
"rich>=13.7",
"typer>=0.12",
]
[project.urls]
Homepage = "https://github.com/NC3-TestingPlatform/headersvalidator"
Repository = "https://github.com/NC3-TestingPlatform/headersvalidator"
Issues = "https://github.com/NC3-TestingPlatform/headersvalidator/issues"
Changelog = "https://github.com/NC3-TestingPlatform/headersvalidator/blob/main/CHANGELOG.md"
[project.scripts]
headersvalidator = "headersvalidator.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["headersvalidator*"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "pytest-mock>=3.12"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--cov=headersvalidator --cov-report=term-missing"