-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
105 lines (87 loc) · 2.4 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hpack"
description = "Pure-Python HPACK header compression"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
authors = [
{ name = "Cory Benfield", email = "[email protected]" }
]
maintainers = [
{ name = "Thomas Kriechbaumer", email = "[email protected]" },
]
requires-python = ">=3.9"
dependencies = []
dynamic = ["version"]
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
"Homepage" = "https://github.com/python-hyper/hpack/"
"Bug Reports" = "https://github.com/python-hyper/hpack/issues"
"Source" = "https://github.com/python-hyper/hpack/"
"Documentation" = "https://python-hyper.org/"
[dependency-groups]
testing = [
"pytest>=8.3.3,<9",
"pytest-cov>=6.0.0,<7",
"pytest-xdist>=3.6.1,<4",
"hypothesis>=6.119.4,<7",
]
linting = [
"ruff>=0.8.0,<1",
"mypy>=1.13.0,<2",
]
packaging = [
"check-manifest==0.50",
"readme-renderer==44.0",
"build>=1.2.2,<2",
"twine>=5.1.1,<6",
"wheel>=0.45.0,<1",
]
docs = [
"sphinx>=7.4.7,<9",
]
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.package-data]
hpack = [ "py.typed" ]
[tool.setuptools.dynamic]
version = { attr = "hpack.__version__" }
[tool.ruff]
line-length = 140
target-version = "py39"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
[tool.coverage.run]
branch = true
source = [ "hpack" ]
[tool.coverage.report]
fail_under = 100
show_missing = true
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError()",
]
[tool.coverage.paths]
source = [
"src/",
".tox/**/site-packages/",
]