21 lines
571 B
TOML
21 lines
571 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.10"
|
|
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"
|