feat: Poetry tools

This commit is contained in:
2026-02-11 18:41:55 -05:00
parent 8e1777ec30
commit 6b54ca0e31
2 changed files with 211 additions and 6 deletions

View File

@@ -6,9 +6,10 @@ authors = [
{name = "aserrador",email = "alejandro.ayala@onecluster.org"}
]
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.13,<4.0"
dependencies = [
"streamlit (>=1.54.0,<2.0.0)"
"streamlit (>=1.54.0,<2.0.0)",
"httpx (>=0.28.1,<0.29.0)"
]
[tool.poetry]
@@ -17,3 +18,11 @@ packages = [{include = "ui", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"taskipy (>=1.14.1,<2.0.0)"
]
[tool.taskipy.tasks]
dev-ui = "streamlit run src/ui/app.py"