Files
deepseek-harness/python/sdk/pyproject.toml
T
dependabot[bot] 669fe2415e chore(deps-dev): update hatchling requirement in /python/sdk
Updates the requirements on [hatchling](https://github.com/pypa/hatch) to permit the latest version.
- [Release notes](https://github.com/pypa/hatch/releases)
- [Commits](https://github.com/pypa/hatch/compare/hatchling-v1.24.0...hatchling-v1.30.1)

---
updated-dependencies:
- dependency-name: hatchling
  dependency-version: 1.30.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-27 15:36:55 +00:00

31 lines
744 B
TOML

[build-system]
requires = ["hatchling>=1.30.1"]
build-backend = "hatchling.build"
[project]
name = "deepseek-harness"
version = "0.0.0.dev0"
description = "Python SDK for DeepSeek Harness"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
dependencies = [
"pydantic>=2.12",
"deepseek-harness-runtime-bin==0.0.0.dev0",
]
[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 }