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.
Files changed (35) hide show
  1. {opencode_py-0.1.0 → opencode_py-0.1.1}/PKG-INFO +5 -5
  2. {opencode_py-0.1.0 → opencode_py-0.1.1}/pyproject.toml +5 -5
  3. {opencode_py-0.1.0 → opencode_py-0.1.1}/.github/workflows/publish.yml +0 -0
  4. {opencode_py-0.1.0 → opencode_py-0.1.1}/.github/workflows/test.yml +0 -0
  5. {opencode_py-0.1.0 → opencode_py-0.1.1}/.gitignore +0 -0
  6. {opencode_py-0.1.0 → opencode_py-0.1.1}/AGENTS.md +0 -0
  7. {opencode_py-0.1.0 → opencode_py-0.1.1}/README.md +0 -0
  8. {opencode_py-0.1.0 → opencode_py-0.1.1}/README.ru.md +0 -0
  9. {opencode_py-0.1.0 → opencode_py-0.1.1}/demo.py +0 -0
  10. {opencode_py-0.1.0 → opencode_py-0.1.1}/docs/opencode-docs-ru.md +0 -0
  11. {opencode_py-0.1.0 → opencode_py-0.1.1}/live.py +0 -0
  12. {opencode_py-0.1.0 → opencode_py-0.1.1}/live_async.py +0 -0
  13. {opencode_py-0.1.0 → opencode_py-0.1.1}/live_streaming.py +0 -0
  14. {opencode_py-0.1.0 → opencode_py-0.1.1}/scripts/check-upstream.py +0 -0
  15. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/__init__.py +0 -0
  16. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/__main__.py +0 -0
  17. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_client.py +0 -0
  18. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_opencode.py +0 -0
  19. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_async_session.py +0 -0
  20. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_binary.py +0 -0
  21. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_client.py +0 -0
  22. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_errors.py +0 -0
  23. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_models.py +0 -0
  24. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_opencode.py +0 -0
  25. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_process.py +0 -0
  26. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_server.py +0 -0
  27. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_session.py +0 -0
  28. {opencode_py-0.1.0 → opencode_py-0.1.1}/src/opencode/_tools.py +0 -0
  29. {opencode_py-0.1.0 → opencode_py-0.1.1}/test_all.py +0 -0
  30. {opencode_py-0.1.0 → opencode_py-0.1.1}/test_live.py +0 -0
  31. {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_async_client.py +0 -0
  32. {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_client.py +0 -0
  33. {opencode_py-0.1.0 → opencode_py-0.1.1}/tests/test_opencode.py +0 -0
  34. {opencode_py-0.1.0 → opencode_py-0.1.1}/web/index.html +0 -0
  35. {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.0
3
+ Version: 0.1.1
4
4
  Summary: Python SDK for Opencode — the open source AI coding agent
5
- Project-URL: Homepage, https://opencode.ai
6
- Project-URL: Repository, https://github.com/anomalyco/opencode
7
- Project-URL: Documentation, https://opencode.ai/docs
8
- Author-email: Anomaly <hello@opencode.ai>
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.0"
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 = "Anomaly", email = "hello@opencode.ai" },
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.ai"
36
- Repository = "https://github.com/anomalyco/opencode"
37
- Documentation = "https://opencode.ai/docs"
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