-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 2.05 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
[build-system]
requires = ["setuptools~=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "http_toolkit"
authors = [{name="Kontur", email = "[email protected]"}]
description = "Library for creating HTTP clients to various services with flexible transport customization"
readme = "README.md"
requires-python = ">=3.9, <3.14"
dependencies = ["httpx~=0.24.1"]
dynamic = ["version"] # The version is imported from the module attribute specified in section [tool.setuptools.dynamic]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: tox",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: System :: Networking",
"Topic :: Internet :: WWW/HTTP",
]
[project.optional-dependencies]
instruments = ["httpx~=0.24.1"]
test = ["pytest==7.0.0", "pytest-cov==3.0.0", "testfixtures==6.18.3", "pytest-asyncio==0.18.3", "pytest-httpx==0.22.0"]
[project.urls]
homepage = "https://github.com/skbkontur/http_toolkit"
[tool.pytest.ini_options]
addopts = "-ra -q"
[tool.flake8]
max-line-length = 119
exclude = ".svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,.venv,env,venv,build"
extend-ignore = ["E203"]
tee = true
[tool.black]
line-length = 119
target-version = ["py39"]
[tool.mypy]
ignore_missing_imports = true
explicit_package_bases = true
install_types = true
non_interactive = true
exclude = ["env", "venv", "build"]
[tool.setuptools.dynamic]
version = {attr = "httptoolkit._version.__version__"}