deepseek-harness-runtime-bin 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.
- deepseek_harness_runtime_bin-0.0.0.dev0/.gitignore +40 -0
- deepseek_harness_runtime_bin-0.0.0.dev0/PKG-INFO +16 -0
- deepseek_harness_runtime_bin-0.0.0.dev0/README.md +8 -0
- deepseek_harness_runtime_bin-0.0.0.dev0/pyproject.toml +14 -0
- deepseek_harness_runtime_bin-0.0.0.dev0/src/deepseek_harness_runtime/__init__.py +5 -0
|
@@ -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,16 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: deepseek-harness-runtime-bin
|
|
3
|
+
Version: 0.0.0.dev0
|
|
4
|
+
Summary: Pinned DeepSeek Harness runtime for the Python SDK (name reservation placeholder)
|
|
5
|
+
License: BSD-3-Clause
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# deepseek-harness-runtime-bin (placeholder)
|
|
10
|
+
|
|
11
|
+
This is a placeholder release that reserves the `deepseek-harness-runtime-bin`
|
|
12
|
+
project name on PyPI for the DeepSeek Harness runtime carrier package.
|
|
13
|
+
|
|
14
|
+
The real runtime carrier release (source of record:
|
|
15
|
+
https://github.com/deepseek-ai/deepseek-harness) will be published under this
|
|
16
|
+
name at a later version.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# deepseek-harness-runtime-bin (placeholder)
|
|
2
|
+
|
|
3
|
+
This is a placeholder release that reserves the `deepseek-harness-runtime-bin`
|
|
4
|
+
project name on PyPI for the DeepSeek Harness runtime carrier package.
|
|
5
|
+
|
|
6
|
+
The real runtime carrier release (source of record:
|
|
7
|
+
https://github.com/deepseek-ai/deepseek-harness) will be published under this
|
|
8
|
+
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-runtime-bin"
|
|
7
|
+
version = "0.0.0.dev0"
|
|
8
|
+
description = "Pinned DeepSeek Harness runtime for the Python SDK (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_runtime"]
|