-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "fastapi-backend-template"
version = "2.0.4"
description = "A FastAPI backend template."
authors = ["ArielMAJ <ariel.maj@hotmail.com>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.12"
uvicorn = {extras = ["standard"], version = "^0.34.2"}
loguru = "^0.7.3"
httpx = "^0.28.1"
fastapi-cache2 = "^0.2.2"
alembic = "^1.15.2"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.40"}
asyncpg = "^0.30.0"
fastapi-async-sqlalchemy = "^0.6.1"
psycopg = "^3.2.9"
pyjwt = "^2.10.1"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-multipart = "^0.0.20"
pydantic = {extras = ["email"], version = "^2.11.4"}
[tool.poetry.group.dev.dependencies]
poetry-plugin-export = "^1.6.0"
pre-commit = "^4.2.0"
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
coverage = "^7.8.0"
pytest-asyncio = "^0.26.0"
pytest-mock = "^3.14.0"
[tool.coverage.run]
branch=true
source = ["src"]
omit = [
"src/main.py",
"src/config.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"