-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 989 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-backend-pro"
version = "0.1.0"
description = "Professional Python Backend API"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.104.1",
"uvicorn[standard]==0.24.0",
"sqlalchemy==2.0.23",
"alembic==1.12.1",
"psycopg2-binary==2.9.9",
"pydantic==2.5.0",
"pydantic-settings==2.1.0",
"python-jose[cryptography]==3.3.0",
"passlib[bcrypt]==1.7.4",
"python-multipart==0.0.6",
"email-validator==2.1.0",
"python-dotenv==1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest==7.4.3",
"pytest-asyncio==0.21.1",
"httpx==0.25.1",
"black==23.11.0",
"flake8==6.1.0",
"mypy==1.7.1",
"pre-commit==3.5.0",
"pytest-cov==4.1.0",
]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true