mirror of
https://github.com/prdlk/vortex.git
synced 2026-08-02 17:31:41 +00:00
23 lines
472 B
TOML
23 lines
472 B
TOML
[build-system]
|
|||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "vortex-tui"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Unified Matrix messaging TUI (Synapse + mautrix bridges)"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"textual>=0.80",
|
||
|
|
"matrix-nio[e2e]>=0.25",
|
||
|
|
"qrcode>=7",
|
||
|
|
"watchfiles>=0.21",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
vortex-tui = "vortex_tui.main:run"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
package-dir = { "" = "app" }
|
||
|
|
packages = ["vortex_tui"]
|