zona/pyproject.toml

20 lines
386 B
TOML

[project]
name = "zona"
version = "0.1.0"
description = "Static site generator"
readme = "README.md"
authors = [
{ name = "Daniel Fichtinger", email = "daniel@ficd.ca" }
]
requires-python = ">=3.12"
dependencies = [
"frontmatter>=3.0.8",
"typer>=0.16.0",
]
[project.scripts]
zona = "zona.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"