Files
deepseek-harness/python/sdk/pyproject.toml
T

38 lines
1.0 KiB
TOML
Raw Normal View History

[build-system]
2026-08-11 14:27:59 +08:00
requires = ["hatchling==1.30.1"]
build-backend = "hatchling.build"
[project]
2026-08-10 19:45:54 +08:00
name = "deepseek-harness-sdk"
version = "0.0.0.dev0"
description = "Python SDK for DeepSeek Harness"
readme = "README.md"
requires-python = ">=3.10"
2026-08-13 01:46:57 +08:00
license = "MIT"
2026-08-11 14:27:59 +08:00
authors = [{ name = "DeepSeek" }]
dependencies = [
2026-08-11 14:27:59 +08:00
"pydantic>=2.12,<3",
"deepseek-harness-runtime-bin==0.0.0.dev0",
]
2026-08-11 14:27:59 +08:00
[project.urls]
Homepage = "https://github.com/deepseek-ai/deepseek-harness"
Documentation = "https://github.com/deepseek-ai/deepseek-harness/blob/master/docs/user/guide/python-sdk.md"
Issues = "https://github.com/deepseek-ai/deepseek-harness/issues"
Source = "https://github.com/deepseek-ai/deepseek-harness"
[dependency-groups]
test = ["pytest>=8.0"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = ["src/deepseek_harness"]
# Editable installs see runtime executables injected after installation instead
# of freezing a wheel snapshot.
[tool.uv.sources]
deepseek-harness-runtime-bin = { path = "../sdk-runtime", editable = true }