Prepare Python SDK public PyPI publication

This commit is contained in:
Yichen Jiang
2026-08-11 17:16:35 +08:00
parent 1d12ae62e7
commit 4445de9921
36 changed files with 874 additions and 127 deletions
+10 -3
View File
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.30.1"]
requires = ["hatchling==1.30.1"]
build-backend = "hatchling.build"
[project]
@@ -8,12 +8,19 @@ version = "0.0.0.dev0"
description = "Python SDK for DeepSeek Harness"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
license = "BSD-3-Clause"
authors = [{ name = "DeepSeek" }]
dependencies = [
"pydantic>=2.12",
"pydantic>=2.12,<3",
"deepseek-harness-runtime-bin==0.0.0.dev0",
]
[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"]