-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 2.27 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 2.27 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "termdeck-agents"
dynamic = ["version"]
description = "Browser terminal deck: persistent named terminals, a Monaco file viewer, and automatic claude/codex session resume across restarts."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [{ name = "Danial Farid" }]
keywords = ["terminal", "tmux", "xterm", "claude", "codex", "ai-agents", "web-terminal", "developer-tools"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Topic :: Utilities",
]
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.27",
"websockets>=14",
"httpx>=0.27",
"msgpack>=1.0",
"setproctitle>=1.3",
"python-multipart>=0.0.9",
"watchdog>=4.0",
]
[project.urls]
Homepage = "https://github.com/danialfarid/termdeck"
Repository = "https://github.com/danialfarid/termdeck"
Issues = "https://github.com/danialfarid/termdeck/issues"
Changelog = "https://github.com/danialfarid/termdeck/blob/main/CHANGELOG.md"
[project.scripts]
termdeck = "termdeck.cli:TermdeckCli.main"
[tool.hatch.version]
path = "termdeck/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["termdeck", "filedeck", "filebrowser"]
[tool.hatch.build.targets.wheel.force-include]
"llms.txt" = "termdeck/llms.txt"
[tool.hatch.build.targets.sdist]
include = ["termdeck", "filedeck", "filebrowser", "README.md", "LICENSE", "NOTICE", "CHANGELOG.md", "llms.txt", "docs"]
exclude = ["**/__pycache__", "**/*.pyc"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "B"]
ignore = ["E501"]
[tool.pytest.ini_options]
# Retired code parks under _/ directories (repo convention); never collect it.
norecursedirs = ["_", "node_modules", ".venv"]