-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (82 loc) · 1.95 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
[project]
name = "github-feed"
version = "0.1.0"
license = { file = "LICENSE" }
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Zach Fuller", email = "[email protected]" }
]
requires-python = ">=3.12"
dependencies = [
"duckdb>=1.1.3",
"pyarrow>=18.1.0",
"pydantic>=2.10.4",
"rich>=13.9.4",
"sqlmodel>=0.0.22",
"textual>=1.0.0",
"urllib3>=2.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"datamodel-code-generator>=0.26.4",
"mypy~=1.13.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.0",
"pytest-socket>=0.7.0",
"pytest-textual-snapshot>=1.0.0",
"ruff>=0.8.4",
"textual-dev>=1.7.0",
]
[tool.uv]
python-preference = "system"
python-downloads = "manual"
default-groups = ["dev"]
[tool.uv.pip]
strict = true
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "C90", "I", "N", "UP", "ASYNC", "S", "B", "PLE", "PLW", "PERF", "RUF", "PT"]
ignore = ["E501", "S101"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
"--disable-socket",
"--color=yes",
"--asyncio-mode=auto"
]
asyncio_default_fixture_loop_scope = "session"
markers = [
"no_mock_export_pitr: Disable mock export PITR autouse fixture",
]
[tool.pyright]
include = ["src", "tests"]
exclude = ["**/node_modules",
"**/__pycache__",
"typings",
"**/.venv",
".venv"
]
typeCheckingMode = "standard"
reportMissingImports = "error"
reportMissingTypeStubs = true
[tool.mypy]
strict = true
exclude = "typings"