-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 1.35 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
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "coding-scaffold"
version = "0.7.0"
description = "Local-first coding agent scaffold with hardware probing, provider discovery, and routing config generation."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [{ name = "CodingScaffold contributors" }]
dependencies = []
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
routellm = ["routellm[serve]>=0.2.0"]
dev = ["pytest>=8.0", "pytest-cov>=5.0", "pytest-xdist>=3.0", "ruff>=0.8"]
[project.scripts]
coding-scaffold = "coding_scaffold.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
coding_scaffold = ["templates/adapters/*", "templates/writers/*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
# pytest-xdist: parallelize across available cores. The perf gate test in
# tests/test_hardware_cache.py is in-process (no subprocess timing) so it's
# stable under worker scheduling. The autouse XDG_CACHE_HOME fixture
# (test_hardware_cache.py) isolates each worker's cache to its own tmp_path.
addopts = "-n auto"