opencode-py 0.1.0__tar.gz → 0.1.1__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.
- {opencode_py-0.1.0 → opencode_py-0.1.1}/PKG-INFO +5 -5
- {opencode_py-0.1.0 → opencode_py-0.1.1}/pyproject.toml +5 -5
- {opencode_py-0.1.0 → opencode_py-0.1.1}/.github/workflows/publish.yml +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/.github/workflows/test.yml +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/.gitignore +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/AGENTS.md +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/README.md +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/README.ru.md +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/demo.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/docs/opencode-docs-ru.md +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/live.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/live_async.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/live_streaming.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/scripts/check-upstream.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/__init__.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/__main__.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_client.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_opencode.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_session.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_binary.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_client.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_errors.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_models.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_opencode.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_process.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_server.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_session.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_tools.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/test_all.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/test_live.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_async_client.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_client.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_opencode.py +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/web/index.html +0 -0
- {opencode_py-0.1.0 → opencode_py-0.1.1}/web/server.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opencode-py
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Python SDK for Opencode — the open source AI coding agent
|
|
5
|
-
Project-URL: Homepage, https://opencode
|
|
6
|
-
Project-URL: Repository, https://github.com/
|
|
7
|
-
Project-URL: Documentation, https://
|
|
8
|
-
Author-email:
|
|
5
|
+
Project-URL: Homepage, https://github.com/skislyakow/opencode-py
|
|
6
|
+
Project-URL: Repository, https://github.com/skislyakow/opencode-py
|
|
7
|
+
Project-URL: Documentation, https://github.com/skislyakow/opencode-py
|
|
8
|
+
Author-email: Sergey Kislyakov <s.kislyakov84@gmail.com>
|
|
9
9
|
License: MIT
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "opencode-py"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Python SDK for Opencode — the open source AI coding agent"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
7
7
|
authors = [
|
|
8
|
-
{ name = "
|
|
8
|
+
{ name = "Sergey Kislyakov", email = "s.kislyakov84@gmail.com" },
|
|
9
9
|
]
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
dependencies = [
|
|
@@ -32,9 +32,9 @@ dev = [
|
|
|
32
32
|
]
|
|
33
33
|
|
|
34
34
|
[project.urls]
|
|
35
|
-
Homepage = "https://opencode
|
|
36
|
-
Repository = "https://github.com/
|
|
37
|
-
Documentation = "https://
|
|
35
|
+
Homepage = "https://github.com/skislyakow/opencode-py"
|
|
36
|
+
Repository = "https://github.com/skislyakow/opencode-py"
|
|
37
|
+
Documentation = "https://github.com/skislyakow/opencode-py"
|
|
38
38
|
|
|
39
39
|
[build-system]
|
|
40
40
|
requires = ["hatchling"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|