Files
WorldTeacher/pyproject.toml
2025-11-04 15:28:26 +01:00

27 lines
640 B
TOML

[project]
name = "gitreposetup"
version = "0.1.0"
description = "A tool to initialize and configure git repositories with licenses and workflows"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"appdirs>=1.4.4",
"pyyaml>=6.0.1",
]
[project.scripts]
gitreposetup = "python.main:main"
grs = "python.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["python"]
[tool.hatch.build.targets.wheel.shared-data]
"licenses" = "share/GitRepoSetup/licenses"
".gitea" = "share/GitRepoSetup/.gitea"
".gitignore" = "share/GitRepoSetup/.gitignore"