mirror of
https://github.com/vinefeeder/TwinVine.git
synced 2026-07-15 18:10:04 +02:00
25 lines
577 B
TOML
25 lines
577 B
TOML
[project]
|
|
name = "vinefeeder"
|
|
version = "0.2.0"
|
|
description = "GUI front-end for envied"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<=3.14"
|
|
|
|
dependencies = [
|
|
"envied", # resolved via [tool.uv.sources] at the workspace root
|
|
"PyQt6", # or GUI toolkit(s)
|
|
"rich",
|
|
"xmltodict>=1.0.2",
|
|
"beaupy>=3.10.2,<4",
|
|
]
|
|
|
|
[project.scripts]
|
|
vinefeeder = "vinefeeder.__main__:main" # GUI entry point
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.12,<1.0.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv.package-data]
|
|
vinefeeder = ["config.yaml", "services/**", "images/**"]
|