26 lines
663 B
TOML
26 lines
663 B
TOML
[project]
|
|
name = "test"
|
|
version = "0.1.0"
|
|
description = "test task for the company"
|
|
authors = [
|
|
{name = "MH.Dmitrii",email = "MH.Dmitrii@homyk.space"}
|
|
]
|
|
license = "example project"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"uvicorn (>=0.51.0,<0.52.0)",
|
|
"fastapi (>=0.139.0,<0.140.0)",
|
|
"pydantic[email] (>=2.13.4,<3.0.0)",
|
|
"pydantic-settings (>=2.14.2,<3.0.0)",
|
|
"sqlalchemy (>=2.0.51,<3.0.0)",
|
|
"bcrypt (>=5.0.0,<6.0.0)",
|
|
"python-jose (>=3.5.0,<4.0.0)",
|
|
"alembic (>=1.18.5,<2.0.0)",
|
|
"python-multipart (>=0.0.32,<0.0.33)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|