feat: overhauled template system (WIP)

This commit is contained in:
Leon Schwarzäugl 2024-12-31 13:39:03 +01:00
parent 442b7b2e0e
commit 11eb077113
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
14 changed files with 330 additions and 125 deletions

View file

@ -0,0 +1,21 @@
[project]
name = "name"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"urllib3>=2.2.3",
]
[project.scripts]
hello = "name:hello"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.6.7",
]