Initial commit

This commit is contained in:
2025-11-04 15:40:02 +01:00
commit 3658b090e0
42 changed files with 5429 additions and 0 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[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"