-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (32 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (32 loc) · 856 Bytes
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
[dependency-groups]
dev = [
"maturin[patchelf]>=1.0,<2.0; sys_platform == 'linux'",
"maturin>=1.0,<2.0; sys_platform != 'linux'",
"ruff>=0.14.8",
]
[tool.uv.sources]
across = { workspace = true }
ssmsolve = { workspace = true }
ssmsolve-rs = { workspace = true }
pyfar = { git = "https://github.com/pyfar/pyfar", rev = "6a365b807886a8636c1f4b9e001d4ca83d0c2471" }
[tool.uv.workspace]
members = ["packages/*"]
[tool.basedpyright]
venv = ".venv"
typeCheckingMode = 'off'
[tool.ruff]
src = ["src"]
line-length = 120
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint]
select = ["B", "D", "E", "F", "I", "ICN", "N", "Q", "W"]
ignore = [
"D100", "D101", "D102", "D103", "D104", "D401",
"E741",
"N802", "N803", "N806",
]
[tool.ruff.lint.pycodestyle]
max-doc-length = 100
[tool.ruff.lint.pydocstyle]
convention = "numpy"