-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (91 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (91 loc) · 2.34 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools==84.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ronin-studio"
version = "0.0.0"
description = "Open-source, local-first Data + AI platform with vendor-neutral execution contracts."
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
readme = "README.md"
[project.scripts]
ronin = "studio_cli.entrypoint:main"
[project.optional-dependencies]
dev = [
"hypothesis>=6.138,<7",
"mutmut==3.7.0",
"mypy>=1.17,<2",
"pytest>=9.0.3,<10",
"pytest-cov>=6.2,<7",
"pytest-randomly>=3.16,<4",
"ruff>=0.12,<1",
]
[tool.setuptools]
package-dir = {"" = "python"}
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools.package-data]
studio_storage = ["migrations/*.sql"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "S", "ASYNC", "C4", "PT", "RET", "ARG", "PTH"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
"packages/**/tests/**/*.py" = ["S101", "PT011"]
[tool.mypy]
python_version = "3.11"
strict = true
mypy_path = "python:packages/pyronin/src"
packages = [
"studio_core",
"studio_notebook",
"studio_runners",
"studio_kernel",
"studio_orchestrator",
"studio_storage",
"studio_vcs",
"studio_execution",
"studio_server",
"studio_worker",
"studio_cli",
]
[tool.pytest.ini_options]
testpaths = ["tests", "packages/pyronin/tests"]
pythonpath = ["python", "packages/pyronin/src", "."]
addopts = "-ra --strict-config --strict-markers"
markers = ["e2e: full v0.1 acceptance journey; requires Docker and a built image"]
[tool.coverage.run]
branch = true
source = [
"studio_core",
"studio_notebook",
"studio_kernel",
"studio_runners",
"studio_orchestrator",
"studio_storage",
"studio_vcs",
"studio_execution",
"studio_server",
"studio_worker",
"studio_cli",
"pyronin",
]
[tool.coverage.report]
show_missing = true
[tool.mutmut]
source_paths = ["src/studio_core"]
pytest_add_cli_args = ["-o", "addopts="]
pytest_add_cli_args_test_selection = [
"tests/test_contract_snapshots.py",
"tests/test_core_ir.py",
"tests/test_core_ir_invariant_edges.py",
"tests/test_diagnostics.py",
"tests/test_instance_keys.py",
"tests/test_operators.py",
"tests/test_project_manifest.py",
"tests/test_projects.py",
"tests/test_runtime_profiles.py",
]
mutate_only_covered_lines = true