-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 1.95 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
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
[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 = "zsol.zsol@gmail.com" }]
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.3",
"click>=8.1.3",
"google-cloud-bigquery>=3.23.1",
"httpx==0.28.1",
"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",
]
version = "0.0.1"
[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.poe.tasks]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=py_wtf --cov=tests"
no-cov = "pytest"
check-types = "pyright"
[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"
[dependency-groups]
dev = [
"poethepoet>=0.37.0",
"pyright>=1.1.348",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-httpx>=0.34.0",
"types-aiofiles>=24.1.0.20240626",
"types-appdirs==1.4.3.5",
"types-networkx>=3.5.0.20250914",
"ufmt>=2.0.0",
]