-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
37 lines (33 loc) · 1.25 KB
/
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
34
35
36
37
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "secure"
version = "1.0.1"
description = "A lightweight package that adds security headers for Python web frameworks."
readme = { file = "README.md", "content-type" = "text/markdown" }
license = { text = "MIT" }
authors = [{ name = "Caleb Kinney", email = "[email protected]" }]
requires-python = ">=3.10"
keywords = ["security", "headers", "web", "framework", "HTTP"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/TypeError/secure"
Documentation = "https://github.com/TypeError/secure/tree/main/docs"
Repository = "https://github.com/TypeError/secure"
Issue-Tracker = "https://github.com/TypeError/secure/issues"
[tool.setuptools.packages]
find = { exclude = ["tests*", "docs*"] }
[tool.setuptools.package-data]
"secure" = ["py.typed"]