-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (36 loc) · 894 Bytes
/
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
[project]
name = "una-root"
version = "0"
requires-python = ">=3.11"
dependencies = ["una", "hatch-una"]
[tool.uv]
dev-dependencies = [
"pytest >= 8.3.1",
"basedpyright >= 1.15.2",
"mkdocs-material >= 9.5.31",
"ruff >= 0.6.2",
]
package = false
[tool.uv.sources]
una = { workspace = true }
hatch-una = { workspace = true }
[tool.uv.workspace]
members = ["una", "plugins/hatch"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["A", "E", "F", "I", "N", "T100", "UP", "ANN401"]
ignore = ["F841"] # pyright does this
[tool.ruff.lint.isort]
known-first-party = ["una"]
[tool.basedpyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.11"
strict = ["una/**/*.py", "plugins/**/*.py"]
ignore = ["dist/"]
reportUnnecessaryTypeIgnoreComment = true
reportImplicitOverride = false
reportUnusedCallResult = false
enableTypeIgnoreComments = true