Files
git-flow/pyproject.toml
T

21 lines
486 B
TOML

[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "git-flow"
description = "Git workflow automation to follow best practices"
version = "v1.0.0"
requires-python = ">= 3.12"
dependencies = [
"requests"
]
authors = [
{name = "Alan Facundo Biglieri", email = "abiglieri@renatre.org.ar"},
{name = "Jonathan Teran Carballo", email = "jteran@renatre.org.ar"},
]
readme = "README.md"
[project.scripts]
git-flow = "git_flow.main:main"