Switch to poetry

This commit is contained in:
2025-02-23 21:56:43 +00:00
parent b0cc227c56
commit e981c1d33d
9 changed files with 755 additions and 52 deletions

View File

@@ -1,4 +1,21 @@
[project]
name = "ohayodash"
version = "0.5.0"
description = "Ohayo Dash is a Kubernetes driven start page and dashboard"
authors = [{ name = "Andrew Williams", email = "andy@tensixtyone.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"flask (==3.1.0)",
"kubernetes (==32.0.1)",
"pyyaml (==6.0.2)",
"gunicorn (==23.0.0)",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
lint.ignore = ["E501"]