pyproject.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [build-system]
  2. requires = ["hatchling==1.30.1"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "deepseek-harness-sdk"
  6. version = "0.0.0.dev0"
  7. description = "Python SDK for DeepSeek Harness"
  8. readme = "README.md"
  9. requires-python = ">=3.10"
  10. license = "MIT"
  11. authors = [{ name = "DeepSeek" }]
  12. dependencies = [
  13. "pydantic>=2.12,<3",
  14. "deepseek-harness-runtime-bin==0.0.0.dev0",
  15. ]
  16. [project.urls]
  17. Homepage = "https://github.com/deepseek-ai/deepseek-harness"
  18. Documentation = "https://github.com/deepseek-ai/deepseek-harness/blob/master/docs/user/guide/python-sdk.md"
  19. Issues = "https://github.com/deepseek-ai/deepseek-harness/issues"
  20. Source = "https://github.com/deepseek-ai/deepseek-harness"
  21. [dependency-groups]
  22. test = ["pytest>=8.0"]
  23. [tool.pytest.ini_options]
  24. addopts = "-q"
  25. testpaths = ["tests"]
  26. [tool.hatch.build.targets.wheel]
  27. packages = ["src/deepseek_harness"]
  28. # Editable installs see runtime executables injected after installation instead
  29. # of freezing a wheel snapshot.
  30. [tool.uv.sources]
  31. deepseek-harness-runtime-bin = { path = "../sdk-runtime", editable = true }