-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 868 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 868 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
38
39
40
41
42
43
[project]
name = "agent-deck"
version = "0.2.0"
description = "Local hardware console bridge for AI agent status and actions."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"httpx>=0.28.0",
"pillow>=10.0.0",
"pydantic>=2.7.0",
"streamdock",
"typer>=0.12.0",
"uvicorn>=0.30.0",
]
[project.scripts]
agent-deckd = "agent_deck.cli:daemon_app"
agent-deckctl = "agent_deck.cli:ctl_app"
agent-deck-codex-hook = "agent_deck.cli:codex_hook_app"
[dependency-groups]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.uv]
package = true
[tool.uv.sources]
streamdock = { path = "vendor/streamdock-python-sdk" }