forked from python-hyper/h2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.fb.toml
101 lines (91 loc) · 2.51 KB
/
pyproject.fb.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
[build-system]
requires = ["hatchling>=1.6.0,<2"]
build-backend = "hatchling.build"
[project]
name = "jh2"
description = "HTTP/2 State-Machine based protocol implementation"
readme = "README.rst"
license-files = { paths = ["LICENSE"] }
license = "MIT"
keywords = ["http2", "hpack", "h2"]
authors = [
{name = "Cory Benfield", email = "[email protected]"}
]
maintainers = [
{name = "Ahmed R. TAHRI", email="[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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 :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.urls]
"Changelog" = "https://github.com/jawah/h2/blob/main/CHANGELOG.rst"
"Code" = "https://github.com/jawah/h2"
"Issue tracker" = "https://github.com/jawah/h2/issues"
[tool.hatch.version]
path = "jh2/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/docs",
"/src",
"/jh2",
"/tests",
"/dev-requirements.txt",
"/CHANGELOG.rst",
"/README.rst",
"/LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = [
"jh2/",
]
[tool.isort]
profile = "black"
src_paths = ["jh2", "tests"]
honor_noqa = true
add_imports = "from __future__ import annotations"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS"
minversion = "6.2"
testpaths = ["tests"]
filterwarnings = [
"default",
]
[tool.coverage.run]
branch = true
source = "jh2"
[tool.coverage.report]
fail_under = 100
show_missing = true
exclude_lines = [
"pragma: no cover",
'assert False, "Should not be reachable"',
".*:.* # Python \\d.*",
".*:.* # Platform-specific:"
]
[tool.coverage.paths]
source = [
"jh2",
".tox/*/site-packages"
]