-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
100 lines (87 loc) · 2.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "py-wtf"
description = 'Documentation index'
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
keywords = []
authors = [{ name = "Zsolt Dollenstein", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"aiofiles==24.1.0",
"appdirs==1.4.4",
"cattrs==24.1.2",
"click>=8.1.3",
"google-cloud-bigquery>=3.23.1",
"httpx==0.27.2",
"keke>=0.1.4",
"libcst>=1.1.0",
"networkx>=3.3",
"packaging>=24.2",
"rich>=13.9.4",
"rst-to-myst[sphinx]==0.4.0",
"stamina>=24.2.0",
"trailrunner>=1.2.1",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/zsol/py.wtf#readme"
Issues = "https://github.com/zsol/py.wtf/issues"
Source = "https://github.com/zsol/py.wtf"
[project.scripts]
py-wtf = "py_wtf.cli:py_wtf"
[tool.hatch.version]
path = "py_wtf/__about__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
[tool.hatch.build.targets.wheel]
[tool.hatch.env]
requires = ["hatch-pip-compile"]
[tool.hatch.envs.default]
type = "pip-compile"
pip-compile-hashes = true
pip-compile-args = ["--no-annotate", "--allow-unsafe"]
pip-compile-resolver = "uv"
python = "3.13"
dependencies = [
"pyright >= 1.1.348",
"pytest-asyncio",
"pytest-cov",
"pytest-httpx",
"pytest",
"types-aiofiles>=24.1.0.20240626",
"types-appdirs==1.4.3",
"ufmt >= 2.0.0",
]
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=py_wtf --cov=tests"
no-cov = "cov --no-cov"
check-types = "pyright"
[[tool.hatch.envs.test.matrix]]
python = ["313"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
parallel = true
omit = ["py_wtf/__about__.py"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
[tool.pyright]
include = ["py_wtf", "scripts"]
typeCheckingMode = "strict"
reportUnknownArgumentType = "none"
reportUnknownLambdaType = "none"
reportUnknownMemberType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportMissingTypeStubs = "none"