main
pyproject.toml
1[build-system]
2requires = ["hatchling >= 1.26"]
3build-backend = "hatchling.build"
4
5[project]
6name = "gtm"
7version = "2026.7.0"
8requires-python = ">= 3.13.5"
9dependencies = [
10 "click == 8.4.2"
11]
12authors = [
13 {name = "Artur Manuel", email = "amadaluzia@disroot.org"},
14]
15description = "Gemini Template Machine"
16readme = "README.md"
17license = "EUPL-1.2"
18
19[project.scripts]
20gtm = "gtm.__main__:run"
21
22[tool.hatch.build.targets.wheel]
23packages = ["src/gtm"]