pyproject.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 = "Bundled dsh CLI runtime for the DeepSeek Harness 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. [project.scripts]
  18. dsh = "deepseek_harness_runtime:main"
  19. # Include the injected dsh executable and sidecars; exclude the dev-only node closure.
  20. [tool.hatch.build]
  21. artifacts = ["src/deepseek_harness_runtime/runtime/deepseek-harness-sdk-runtime-*"]
  22. exclude = ["src/deepseek_harness_runtime/runtime/node"]
  23. [tool.hatch.build.targets.wheel]
  24. packages = ["src/deepseek_harness_runtime"]
  25. [tool.hatch.build.targets.wheel.hooks.custom]
  26. [tool.hatch.build.targets.sdist.hooks.custom]