-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 909 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
[tool.poetry]
name = "photoshare"
version = "1"
description = "backend part"
authors = ["Your Name <you@example.com>"]
license = "n"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.12"
sqlalchemy = "^2.0.40"
psycopg2-binary = "^2.9.10"
pydantic = "^2.11.1"
alembic = "^1.15.2"
uvicorn = "^0.34.0"
python-dotenv = "^1.1.0"
passlib = "^1.7.4"
python-jose = "^3.4.0"
pydantic-settings = "^2.8.1"
cloudinary = "^1.43.0"
fastapi-mail = "^1.4.2"
slowapi = "^0.1.9"
asyncpg = "^0.30.0"
greenlet = "^3.1.1"
bcrypt = "<4.1.0"
black = "^25.1.0"
qrcode = "^8.1"
python-multipart = "^0.0.20"
pillow = "^11.1.0"
httpx = "^0.28.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
pytest-cov = "^6.1.1"
asgi-lifespan = "^2.1.0"
httpx = "^0.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"