vban-tui/pyproject.toml
2026-03-21 00:05:42 +00:00

33 lines
937 B
TOML

[project]
name = "vban-tui"
version = "0.2.1"
description = "A Textual-based TUI for VBAN Text"
readme = "README.md"
authors = [{ name = "onyx-and-iris", email = "code@onyxandiris.online" }]
requires-python = ">=3.10"
dependencies = [
"pydantic-settings>=2.13.1",
"textual>=8.1.1",
"vban-cmd>=2.10.3",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[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 }