2025-01-10 01:43:19 +04:00
|
|
|
[project]
|
|
|
|
name = "lkeep"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = [
|
2025-01-10 05:07:08 +04:00
|
|
|
{ name = "proDream", email = "sushkoos@gmail.com" }
|
2025-01-10 01:43:19 +04:00
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
|
|
"fastapi[standard] (>=0.115.6,<0.116.0)",
|
|
|
|
"uvicorn[standard] (>=0.34.0,<0.35.0)",
|
2025-01-10 05:07:08 +04:00
|
|
|
"pre-commit (>=4.0.1,<5.0.0)",
|
|
|
|
"sqlalchemy (>=2.0.37,<3.0.0)",
|
|
|
|
"asyncpg (>=0.30.0,<0.31.0)",
|
2025-01-10 19:21:04 +04:00
|
|
|
"pydantic-settings (>=2.7.1,<3.0.0)",
|
|
|
|
"alembic (>=1.14.0,<2.0.0)",
|
|
|
|
"ruff (>=0.9.0,<0.10.0)",
|
2025-01-10 01:43:19 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2025-01-10 05:07:08 +04:00
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
app = "lkeep.main:start"
|