24 lines
463 B
TOML
24 lines
463 B
TOML
[project]
|
|
name = "starsky-presenter"
|
|
version = "0.1.0"
|
|
description = "Small utility for projecting a sky full of stars"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Linus Vogel", email = "linus@linvogel.ch" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pygame>=2.6.1",
|
|
"pyqt6>=6.10.0",
|
|
"pyyaml>=6.0.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
starsky-presenter = "starsky_presenter:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|