-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.05 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
[tool.poetry]
name = "PhotoShare_API"
version = "0.1.0"
description = ""
authors = ["Virtuoso Developers"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
psycopg2 = "^2.9.8"
asyncpg = "^0.28.0"
sqlalchemy = "^2.0.21"
alembic = "^1.12.0"
redis = "4.6.0"
fastapi = "^0.104.1"
fastapi-limiter = "^0.1.5"
fastapi-mail = "^1.4.1"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
pydantic-settings = "^2.1.0"
pydantic = {extras = ["email"], version = "^2.4.2"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-multipart = "^0.0.6"
libgravatar = "^1.0.4"
cloudinary = "^1.37.0"
qrcode = "^7.4.2"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.2.6"
[tool.poetry.group.test.dependencies]
faker = "^19.6.2"
httpx = "^0.25.2"
aiosqlite = "^0.19.0"
pytest = "^7.4.3"
pytest-anyio = "^0.0.0"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.coverage.run]
omit = ["tests/*"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"