summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/python/pyproject.toml
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-12-07 15:52:27 -0500
committerDax Raad <[email protected]>2025-12-07 15:52:27 -0500
commit13b2cf50aeb791f4b47786f95c8572a5caa75c7e (patch)
treecea24f522f7e0de330475bf0be7803cdf1a33371 /packages/sdk/python/pyproject.toml
parent93b0abfce9660c4da21026b138857bf408aa4cae (diff)
downloadopencode-13b2cf50aeb791f4b47786f95c8572a5caa75c7e.tar.gz
opencode-13b2cf50aeb791f4b47786f95c8572a5caa75c7e.zip
remove outdated SDKs
Diffstat (limited to 'packages/sdk/python/pyproject.toml')
-rw-r--r--packages/sdk/python/pyproject.toml56
1 files changed, 0 insertions, 56 deletions
diff --git a/packages/sdk/python/pyproject.toml b/packages/sdk/python/pyproject.toml
deleted file mode 100644
index 47c63a264..000000000
--- a/packages/sdk/python/pyproject.toml
+++ /dev/null
@@ -1,56 +0,0 @@
-[build-system]
-requires = ["hatchling>=1.17.0"]
-build-backend = "hatchling.build"
-
-[project]
-name = "opencode-ai"
-version = "0.1.0"
-description = "Python client for the Opencode API (generated via openapi-python-client)"
-readme = "README.md"
-requires-python = ">=3.8"
-license = {text = "MIT"}
-authors = [
- { name = "Opencode Authors", email = "[email protected]" }
-]
-dependencies = [
- "httpx>=0.27.0",
- "pydantic>=2.0.0",
- "python-dateutil>=2.8.2"
-]
-
-[project.urls]
-Homepage = "https://opencode.ai"
-Repository = "https://github.com/sst/opencode"
-
-[tool.uv]
-# Development-time dependencies installed with `uv sync --dev`
-dev-dependencies = [
- "openapi-python-client",
- "black",
- "isort",
- "ruff",
- "pytest",
- "pytest-asyncio",
- "sseclient-py",
- "build",
- "twine",
- "mkdocs",
- "mkdocs-material",
-]
-
-[tool.black]
-line-length = 120
-target-version = ["py38", "py39", "py310", "py311", "py312"]
-
-[tool.isort]
-profile = "black"
-line_length = 120
-
-[tool.ruff]
-line-length = 120
-select = ["E", "F", "I", "UP"]
-ignore = []
-
-[tool.pytest.ini_options]
-addopts = "-q"
-pythonpath = ["src"]