-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.02 KB
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
[project]
name = "agentdeck"
version = "1.0.0"
description = "Self-hosted, mobile-first mission control for AI coding agents on your own infrastructure"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Jeremiah Mackey" }]
requires-python = ">=3.11"
keywords = ["ai", "coding-agents", "claude-code", "kanban", "self-hosted",
"proxmox", "mobile", "orchestration"]
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"asyncssh>=2.14",
"httpx>=0.27",
]
[project.optional-dependencies]
push = ["pywebpush>=2.0"]
mcp = ["mcp>=1.0"]
dev = ["pytest>=8", "pytest-asyncio>=0.24", "playwright>=1.45"]
[project.urls]
Homepage = "https://github.com/JeremiahM37/agentdeck"
Documentation = "https://github.com/JeremiahM37/agentdeck/blob/main/DESIGN.md"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 100
target-version = "py312"
exclude = [".venv", "smoke-repo"]
[tool.ruff.lint]
select = ["E", "F", "B", "I", "UP"]
ignore = ["E501", "E701", "E702", "B008"]