create base models(users,tasks)

This commit is contained in:
IluaAir
2025-05-31 13:29:23 +03:00
parent b33a04f8fc
commit 542d28abcb
11 changed files with 1274 additions and 2 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "taskncoffee"
version = "0.1.0"
description = "simple task-manager"
authors = [
{name = "IluaAir",email = "ilya@air.ru"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi (>=0.115.12,<0.116.0)",
"sqlalchemy (>=2.0.41,<3.0.0)",
"fastapi-users[sqlalchemy] (>=14.0.1,<15.0.0)",
"uvicorn (>=0.34.2,<0.35.0)",
"aiosqlite (>=0.21.0,<0.22.0)",
"pydantic-settings (>=2.9.1,<3.0.0)",
"alembic (>=1.16.1,<2.0.0)",
"ruff (>=0.11.12,<0.12.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"