CLI is working, but status needs work: everything is in serving units but I need to know how many bottles or pills to buy

This commit is contained in:
2024-02-03 22:53:49 +01:00
parent 7f2fb0cbbf
commit 6c00e8dd30
13 changed files with 575 additions and 212 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "sup"
version = "0.1.0"
description = ""
authors = ["Zev Averbach <zev@averba.ch>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
rich = "^13.7.0"
typer = "^0.9.0"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sup = "sup.cli:app"