File size: 693 Bytes
ca3d977 | 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 | [build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "planner-cache"
version = "0.1.0"
description = "Canonical Planner Cache, compatibility layers, and durable personality packages"
requires-python = ">=3.11"
dependencies = [
"accelerate>=1.12",
"numpy>=2.0",
"safetensors>=0.5",
"torch>=2.7",
"transformers>=5.15",
]
[project.optional-dependencies]
dev = ["pytest>=9"]
publishing = ["cairosvg>=2.7"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-ra"
markers = [
"slow_cuda: exact CUDA integration regressions using production-scale models",
]
|