feat: store manager basic implementation

Refs: OPS-16
This commit is contained in:
Christoph J. Scherr 2025-02-25 15:03:14 +01:00
parent 554f3bfffc
commit e6b10ce96e
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB
3 changed files with 67 additions and 7 deletions

View file

@ -2,19 +2,17 @@
name = "senju"
version = "0.1.0"
description = "API / Webservice for Phrases/Words/Kanji/Haiku"
authors = [
{name = "PlexSheep",email = "software@cscherr.de"}
]
authors = [{ name = "PlexSheep", email = "software@cscherr.de" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"jinja2 (>=3.1.5,<4.0.0)",
"pytest>=7.0.0",
"flask (>=3.1.0,<4.0.0)",
"pytest>=7.0.0",
"flask (>=3.1.0,<4.0.0)",
"tinydb (>=3.1.0,<4.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"