-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (34 loc) · 886 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "ecommerce-graphql"
version = "0.1.0"
description = "Ecommerce python graphql clothing store"
authors = ["Kiel Ed <kieledssh@gmail.com>"]
readme = "README.md"
packages = [
{ include = "shared", from = "lib" },
]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.95.2"
alembic = "^1.8.1"
passlib = "^1.7.4"
fastapi-jwt-auth = "^0.5.0"
python-multipart = "^0.0.6"
pillow = "^9.3.0"
strawberry-graphql = { extras = ["fastapi"], version = "^0.178.0" }
asyncpg = "^0.27.0"
hypercorn = "^0.14.3"
pyrogram = "^2.0.102"
tgcrypto = "^1.2.5"
instagrapi = "^1.17.1"
aiohttp = { extras = ["speedups"], version = "^3.8.3" }
sqlalchemy = "2.0.15"
alchemy-graph = "^0.1.2"
aio-pika = "^9.0.7"
tinydb = "^4.7.1"
aiofiles = "^23.1.0"
types-aiofiles = "^23.1.0.3"
uvicorn = "^0.22.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"