| 123456789101112131415161718192021222324252627282930313233 |
- [build-system]
- requires = ["hatchling==1.30.1"]
- build-backend = "hatchling.build"
- [project]
- name = "deepseek-harness-runtime-bin"
- version = "0.0.0.dev0"
- description = "Bundled dsh CLI runtime for the DeepSeek Harness Python SDK"
- readme = "README.md"
- requires-python = ">=3.10"
- license = "MIT"
- authors = [{ name = "DeepSeek" }]
- [project.urls]
- Homepage = "https://github.com/deepseek-ai/deepseek-harness"
- Documentation = "https://github.com/deepseek-ai/deepseek-harness/blob/master/python/sdk-runtime/README.md"
- Issues = "https://github.com/deepseek-ai/deepseek-harness/issues"
- Source = "https://github.com/deepseek-ai/deepseek-harness"
- [project.scripts]
- dsh = "deepseek_harness_runtime:main"
- # Include the injected dsh executable and sidecars; exclude the dev-only node closure.
- [tool.hatch.build]
- artifacts = ["src/deepseek_harness_runtime/runtime/deepseek-harness-sdk-runtime-*"]
- exclude = ["src/deepseek_harness_runtime/runtime/node"]
- [tool.hatch.build.targets.wheel]
- packages = ["src/deepseek_harness_runtime"]
- [tool.hatch.build.targets.wheel.hooks.custom]
- [tool.hatch.build.targets.sdist.hooks.custom]
|