Files
mongo-fastapi-template/pyproject.toml
2025-08-03 03:48:31 +03:00

38 lines
698 B
TOML

[project]
name = "app"
version = "0.1.0"
description = "Fastapi Poetry Template"
authors = [
{name = "pptx704"},
]
readme = "README.md"
requires-python = "^3.12"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
bcrypt = "^4.3.0"
fastapi = {extras = ["standard"], version = "^0.115.13"}
pydantic-settings = "^2.10.0"
beanie = "^1.25.0"
pyjwt = "^2.10.1"
python-dotenv = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-asyncio = "^1.0.0"
httpx = "^0.28.1"
black = "^25.1.0"
isort = "^6.0.1"
pre-commit = "^4.2.0"
[tool.black]
line-length = 80
[tool.isort]
profile = "black"
line_length = 80