pyproject.toml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. [build-system]
  2. requires = ["hatchling==1.30.1"]
  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 = "MIT"
  11. authors = [{ name = "DeepSeek" }]
  12. [project.urls]
  13. Homepage = "https://github.com/deepseek-ai/deepseek-harness"
  14. Documentation = "https://github.com/deepseek-ai/deepseek-harness/blob/master/python/sdk-runtime/README.md"
  15. Issues = "https://github.com/deepseek-ai/deepseek-harness/issues"
  16. Source = "https://github.com/deepseek-ai/deepseek-harness"
  17. # Include the injected executable and default config; exclude the dev-only node
  18. # closure from wheels and sdists.
  19. [tool.hatch.build]
  20. artifacts = ["src/deepseek_harness_runtime/runtime/dsh-jsonrpc-agent-*"]
  21. exclude = ["src/deepseek_harness_runtime/runtime/node"]
  22. [tool.hatch.build.targets.wheel]
  23. packages = ["src/deepseek_harness_runtime"]
  24. [tool.hatch.build.targets.wheel.hooks.custom]
  25. [tool.hatch.build.targets.sdist.hooks.custom]