mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 07:19:29 -05:00
29 lines
437 B
TOML
29 lines
437 B
TOML
[build-system]
|
|
requires = ["hatchling", "hatch-vcs"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "caelestia"
|
|
requires-python = ">=3.13"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"pillow",
|
|
"materialyoucolor"
|
|
]
|
|
|
|
[project.scripts]
|
|
caelestia = "caelestia:main"
|
|
|
|
[tool.hatch.version]
|
|
source = "vcs"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
only-include = [
|
|
"src",
|
|
"completions",
|
|
"README.md"
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|