Retro Bulletin Board Systems on atproto. Web app and TUI.
atbbs.xyz
python
tui
atproto
bbs
1[project]
2name = "atbbs"
3version = "0.6.0"
4description = "Decentralized bulletin boards on atproto."
5readme = "README.md"
6requires-python = ">=3.14"
7dependencies = [
8 "aiohttp>=3.13.5",
9 "authlib>=1.6.9",
10 "httpx>=0.28.1",
11 "hypercorn>=0.18.0",
12 "quart>=0.20.0",
13 "rich-click>=1.9.7",
14 "textual>=8.2.2",
15]
16
17[build-system]
18requires = ["hatchling"]
19build-backend = "hatchling.build"
20
21[project.scripts]
22atbbs = "cli.__main__:main"
23
24[tool.hatch.build.targets.wheel]
25packages = ["cli", "core", "web", "tui"]
26exclude = ["web/ts"]
27
28[dependency-groups]
29dev = []