refactor: cambio estructura de proyecto siguiendo guidelines de python

This commit is contained in:
jt
2025-11-03 21:46:49 -03:00
parent 44b2adecb8
commit 9e1c710373
7 changed files with 39 additions and 34 deletions
+20
View File
@@ -0,0 +1,20 @@
[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"