deepseek-harness-sdk 0.0.0.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,40 @@
1
+ CLAUDE.local.md
2
+ .env
3
+ node_modules/
4
+ lib/
5
+ *.tsbuildinfo
6
+ pnpm-debug.log
7
+ .pnpm-store/
8
+ .cache/
9
+ examples/*/*.jsonl
10
+ .storages/
11
+ .sessions/
12
+ examples/*/.sessions/
13
+ coverage/
14
+ .doc-typecheck-*/
15
+ .node-next-types-*/
16
+ .oxlint-contract-*/
17
+ .oxlintrc.contract-*.json
18
+ oxlint-contract-*.ts
19
+ .humanize/
20
+ tmp/
21
+ .claude/commands/
22
+ .claude/launch.json
23
+ .claude/settings.json
24
+ .vscode/
25
+ .DS_Store
26
+ .idea
27
+ mise.toml
28
+ dist-exe/
29
+ python/sdk-runtime/src/deepseek_harness_runtime/runtime/dsh-jsonrpc-agent-*
30
+ python/sdk-runtime/src/deepseek_harness_runtime/runtime/node/
31
+ python/**/__pycache__/
32
+ python/**/.pytest_cache/
33
+ apps/web/dist/
34
+ .artifacts/
35
+ .playwright-mcp/
36
+ .orig
37
+ .worktrees/
38
+ worktrees/
39
+ .agents/worktrees/
40
+ .typert-*/
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.5
2
+ Name: deepseek-harness-sdk
3
+ Version: 0.0.0.dev0
4
+ Summary: Python SDK for DeepSeek Harness (name reservation placeholder)
5
+ License: BSD-3-Clause
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ # deepseek-harness-sdk (placeholder)
10
+
11
+ This is a placeholder release that reserves the `deepseek-harness-sdk` project
12
+ name on PyPI for the DeepSeek Harness Python SDK.
13
+
14
+ The real SDK release (source of record: https://github.com/deepseek-ai/deepseek-harness)
15
+ will be published under this name at a later version.
@@ -0,0 +1,7 @@
1
+ # deepseek-harness-sdk (placeholder)
2
+
3
+ This is a placeholder release that reserves the `deepseek-harness-sdk` project
4
+ name on PyPI for the DeepSeek Harness Python SDK.
5
+
6
+ The real SDK release (source of record: https://github.com/deepseek-ai/deepseek-harness)
7
+ will be published under this name at a later version.
@@ -0,0 +1,14 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.30.1"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "deepseek-harness-sdk"
7
+ version = "0.0.0.dev0"
8
+ description = "Python SDK for DeepSeek Harness (name reservation placeholder)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "BSD-3-Clause" }
12
+
13
+ [tool.hatch.build.targets.wheel]
14
+ packages = ["src/deepseek_harness"]
@@ -0,0 +1,5 @@
1
+ """Placeholder package reserving the deepseek-harness-sdk name on PyPI.
2
+
3
+ The real DeepSeek Harness Python SDK will be published under this name at a
4
+ later version.
5
+ """