32 lines
867 B
TOML
32 lines
867 B
TOML
[build-system]
|
|
requires = ["hatchling>=1.24.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "deepseek-harness"
|
|
version = "0.0.0-dev"
|
|
description = "Python SDK for DeepSeek Harness"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "BSD-3-Clause" }
|
|
dependencies = [
|
|
"pydantic>=2.12",
|
|
"deepseek-harness-runtime-bin==0.0.0-dev",
|
|
]
|
|
|
|
[dependency-groups]
|
|
test = ["pytest>=8.0"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/deepseek_harness"]
|
|
|
|
# Editable: the runtime package's executables are injected into its source
|
|
# tree AFTER install (by scripts/build-exe-for-python-sdk.ts or a manual copy); an
|
|
# editable install sees them immediately instead of freezing a wheel snapshot.
|
|
[tool.uv.sources]
|
|
deepseek-harness-runtime-bin = { path = "../sdk-runtime", editable = true }
|