Files
git-flow/pyproject.toml
T

21 lines
618 B
TOML

[build-system]
requires = ["setuptools >= 80", "setuptools-scm[simple] >= 8" ]
build-backend = "setuptools.build_meta"
[project]
name = "git-flow-envs"
description = "Git workflow automation to follow best practices when working with multiple environments"
dynamic = ["version"]
requires-python = ">= 3.14"
dependencies = [
"requests", "typer", "rich", "questionary", "giturlparse"
]
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"