-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
57 lines (47 loc) · 1.19 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
[project]
name = "styx-runtime-py"
version = "0.0.0"
description = "Python runtime and integrations for Styx (workspace root)."
requires-python = ">=3.10"
# Workspace root is not published; deps live in member packages.
dependencies = []
[dependency-groups]
dev = [
"pytest>=9.0.1",
"mypy>=1.18.2",
"pre-commit>=4.4.0",
"pytest-cov>=7.0.0",
"ruff>=0.14.6",
"deptry>=0.24.0",
]
docs = ["pdoc>=16.0.0"]
[tool.uv]
package = false
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv.sources]
styxdefs = { workspace = true }
styxgraph = { workspace = true }
styxcache = { workspace = true }
styxcontainer-common = { workspace = true }
styxdocker = { workspace = true }
styxpodman = { workspace = true }
styxsingularity = { workspace = true }
[tool.pytest.ini_options]
testpaths = ["packages"]
addopts = ["--import-mode=importlib"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = ["ANN", "D", "E", "F", "I"]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"**/tests/**/*.py" = ["ANN", "D100", "D101", "D102", "D103", "D104"]