mirror of
https://github.com/onyx-and-iris/vban-tui.git
synced 2026-03-23 18:29:17 +00:00
23 lines
520 B
TOML
23 lines
520 B
TOML
[project]
|
|
name = "vban-tui"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pydantic-settings>=2.13.1",
|
|
"textual>=8.1.1",
|
|
"vban-cmd>=2.10.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
vban-tui = "vban_tui.tui:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.10.9,<0.11.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv.sources]
|
|
vban-cmd = { path = "../vban-cmd-python", editable = true }
|