feat: add basic api with really bad model

Refs: OPS-85
This commit is contained in:
Christoph J. Scherr 2025-03-23 16:49:07 +01:00
parent 440bf6eacb
commit 47d4d9e4b9
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB
4 changed files with 101 additions and 7 deletions

View file

@ -2,9 +2,12 @@
name = "senju"
version = "0.1.0"
description = "API / Webservice for Phrases/Words/Kanji/Haiku"
authors = [{ name = "Christoph J. Scherr", email = "software@cscherr.de" },{name = "Moritz Marquard", email="mrmarquard@protonmail.com"}]
authors = [
{ name = "Christoph J. Scherr", email = "software@cscherr.de" },
{ name = "Moritz Marquard", email = "mrmarquard@protonmail.com" },
]
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.10,<3.13"
dependencies = [
"jinja2 (>=3.1.5,<4.0.0)",
"pytest>=7.0.0",
@ -13,6 +16,8 @@ dependencies = [
"requests (>=2.32.3,<3.0.0)",
"coverage (>=7.6.12,<8.0.0)",
"pytest-httpserver (>=1.1.2,<2.0.0)",
"pillow (>=11.1.0,<12.0.0)",
"tensorflow (>=2.19.0,<3.0.0)",
]