-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.build_meta"
[project]
name = "opencode-worker"
version = "0.1.0"
description = "Safe OpenCode Worker — sandboxed opencode task runner"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.135",
"uvicorn[standard]>=0.41",
"pydantic>=2.12",
"pydantic-settings>=2.13",
"httpx>=0.28",
"httpx-sse>=0.4",
"docker>=7.1",
"aiosqlite>=0.22",
"sse-starlette>=2.4",
"anyio>=4.13",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.25",
]
[project.scripts]
opencode-worker = "worker.main:run"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"