-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.08 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools==80.9.0"]
[project]
name = "httptools"
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
]
requires-python = ">=3.9"
authors = [
{name = "Yury Selivanov", email="yury@magic.io"},
]
license = "MIT"
license-files = ["LICENSE"]
description = "A collection of framework independent HTTP protocol utils."
readme = "README.md"
[project.urls]
Homepage = "https://github.com/MagicStack/httptools"
[dependency-groups]
dev = [
# type checker
"pyright >= 1.1.406",
# tests
"pytest",
# build
"setuptools",
"wheel"
]
[tool.pyright]
pythonVersion = "3.8"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
reportUnnecessaryIsInstance = false
reportUnnecessaryTypeIgnoreComment = true
reportMissingModuleSource = false
include = ["httptools"]
exclude = ["tests"]