Rename new-registration-app to meal-manager

This commit is contained in:
2025-10-12 21:25:23 +02:00
parent 773f8ad2b6
commit 03d823c713
66 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
[project]
name = "new-registration-app"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "~=3.13.0"
dependencies = [
"alembic>=1.17.0",
"fastapi[standard]>=0.116.0",
"sqlalchemy>=2.0.44",
"uvicorn[standard]>=0.35.0",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"isort>=6.0.1",
]
[tool.isort]
profile = "black"
[tool.alembic]
# path to migration scripts.
# this is typically a path given in POSIX (e.g. forward slashes)
# format, relative to the token %(here)s which refers to the location of this
# ini file
script_location = "%(here)s/alembic"
# template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
# Uncomment the line below if you want the files to be prepended with date and time
# see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file
# for all available tokens
file_template = "%%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s"
# additional paths to be prepended to sys.path. defaults to the current working directory.
prepend_sys_path = [
"."
]