Files
TwinVine/packages/vinefeeder/pyproject.toml
T

25 lines
577 B
TOML
Raw Normal View History

2025-08-24 13:43:11 +01:00
[project]
name = "vinefeeder"
2025-11-12 13:00:13 +00:00
version = "0.2.0"
2025-08-24 13:43:11 +01:00
description = "GUI front-end for envied"
readme = "README.md"
2026-06-06 15:01:52 +01:00
requires-python = ">=3.10,<=3.14"
2025-10-29 13:05:38 +00:00
2025-08-24 13:43:11 +01:00
dependencies = [
"envied", # resolved via [tool.uv.sources] at the workspace root
"PyQt6", # or GUI toolkit(s)
"rich",
2026-01-15 12:15:14 +00:00
"xmltodict>=1.0.2",
2026-02-16 12:19:21 +00:00
"beaupy>=3.10.2,<4",
2025-08-24 13:43:11 +01:00
]
[project.scripts]
vinefeeder = "vinefeeder.__main__:main" # GUI entry point
[build-system]
2026-01-15 12:15:14 +00:00
requires = ["uv_build>=0.8.12,<1.0.0"]
2025-08-24 13:43:11 +01:00
build-backend = "uv_build"
[tool.uv.package-data]
vinefeeder = ["config.yaml", "services/**", "images/**"]