mirror of
https://github.com/nikdoof/ohayodash.git
synced 2025-12-13 10:02:17 +00:00
24 lines
581 B
TOML
24 lines
581 B
TOML
[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.1)",
|
|
"kubernetes (==33.1.0)",
|
|
"pyyaml (==6.0.2)",
|
|
"gunicorn (==23.0.0)",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
ruff = "^0.11.0"
|
|
|
|
[tool.ruff]
|
|
lint.ignore = ["E501"] |