pyproject.toml 740 B

123456789101112131415161718192021222324
  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. # Include the injected executable and default config; exclude the dev-only node
  12. # closure from wheels and sdists.
  13. [tool.hatch.build]
  14. artifacts = ["src/deepseek_harness_runtime/runtime/dsh-jsonrpc-agent-*"]
  15. exclude = ["src/deepseek_harness_runtime/runtime/node"]
  16. [tool.hatch.build.targets.wheel]
  17. packages = ["src/deepseek_harness_runtime"]
  18. [tool.hatch.build.targets.wheel.hooks.custom]
  19. [tool.hatch.build.targets.sdist.hooks.custom]