Files
TwinVine/packages/vinefeeder/pyproject.toml
T

23 lines
531 B
TOML
Raw Normal View History

2025-08-24 13:43:11 +01:00
[project]
name = "vinefeeder"
version = "0.1.0"
description = "GUI front-end for envied"
readme = "README.md"
2025-11-05 15:25:58 +00:00
requires-python = ">=3.10,<3.13"
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",
]
[project.scripts]
vinefeeder = "vinefeeder.__main__:main" # GUI entry point
[build-system]
requires = ["uv_build>=0.8.12,<0.9.0"]
build-backend = "uv_build"
[tool.uv.package-data]
vinefeeder = ["config.yaml", "services/**", "images/**"]