1
0

pyproject.toml 859 B

12345678910111213141516171819202122232425
  1. [build-system]
  2. requires = ["hatchling>=1.24.0"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "deepseek-harness-runtime-bin"
  6. version = "0.0.0.dev0"
  7. description = "Pinned DeepSeek Harness runtime for the Python SDK"
  8. readme = "README.md"
  9. requires-python = ">=3.10"
  10. license = { text = "BSD-3-Clause" }
  11. # Distributions carry the platform executables (build-injected, VCS-ignored —
  12. # hence `artifacts`) and the checked-in runtime/cordis.yml; the dev-only node
  13. # closure under runtime/node/ is explicitly excluded from wheel and sdist.
  14. [tool.hatch.build]
  15. artifacts = ["src/deepseek_harness_runtime/runtime/dsh-jsonrpc-agent-*"]
  16. exclude = ["src/deepseek_harness_runtime/runtime/node"]
  17. [tool.hatch.build.targets.wheel]
  18. packages = ["src/deepseek_harness_runtime"]
  19. [tool.hatch.build.targets.wheel.hooks.custom]
  20. [tool.hatch.build.targets.sdist.hooks.custom]