-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
72 lines (63 loc) · 1.85 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
[project]
name = "aioxmlrpc"
description = "XML-RPC client for asyncio"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Typing :: Typed",
]
version = "0.9.0"
readme = "README.rst"
license = { text = "MIT License" }
authors = [{ name = "Guillaume Gauvrit", email = "[email protected]" }]
requires-python = ">=3.9"
dependencies = ["httpx >=0.24, <1"]
[tool.pdm.build]
includes = ["src", "CHANGELOG.rst", "CONTRIBUTORS.rst"]
excludes = ["tests"]
[project.urls]
Homepage = "https://mardiros.github.io/aioxmlrpc"
Documentation = "https://mardiros.github.io/aioxmlrpc"
Repository = "https://github.com/mardiros/aioxmlrpc.git"
Issues = "https://github.com/mardiros/aioxmlrpc/issues"
Changelog = "https://mardiros.github.io/aioxmlrpc/user/changelog.html"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[[tool.mypy.overrides]]
disallow_any_generics = true
disallow_untyped_defs = true
module = "aioxmlrpc.*"
[tool.pyright]
ignore = ["examples"]
include = ["src", "tests"]
reportPrivateUsage = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportShadowedImports = false
typeCheckingMode = "strict"
venvPath = ".venv"
[dependency-groups]
dev = [
"mypy>=1.13.0,<2",
"pytest >=8.3.3,<9",
"pytest-asyncio >=0.24.0",
"pytest-cov >=6.0.0,<7",
]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"except ImportError:",
"\\s+\\.\\.\\.$",
"# coverage: ignore",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"