create base models(users,tasks)
This commit is contained in:
25
pyproject.toml
Normal file
25
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user