-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
33 lines (28 loc) · 967 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "secheaders"
version = "0.1.1"
requires-python = ">=3.8"
authors = [{ name = "Jussi-Pekka Erkkilä", email = "[email protected]" }]
maintainers = [{ name = "Jussi-Pekka Erkkilä", email = "[email protected]" }]
description = "Scan HTTP security headers"
readme = "README.md"
keywords = ["web", "security"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Homepage = "https://github.com/juerkkil/secheaders"
Issues = "https://github.com/juerkkil/secheaders/issues"
Repository = "https://github.com/juerkkil/secheaders"
[project.scripts]
secheaders = "secheaders.secheaders:main"