21 lines
424 B
TOML
21 lines
424 B
TOML
[project]
|
|
name = "starsky-presenter"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Linus Vogel", email = "linus@linvogel.ch" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pygame>=2.6.1",
|
|
"pyqt6>=6.10.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
starsky-presenter = "starsky_presenter:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.7,<0.10.0"]
|
|
build-backend = "uv_build"
|