-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1010 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
[tool.poetry]
name = "api-central"
version = "0.1.0"
description = "Bridges Market Central API"
authors = ["marxxt <marxxt@me.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
strawberry-graphql = {extras = ["fastapi"], version = "^0.270.2"}
uvicorn = "^0.34.2"
jwt = "^1.3.1"
supabase = "^2.15.2"
pydantic-settings = "^2.9.1"
python-dotenv = "^1.1.0"
google-cloud-firestore = "2.20.2"
redis = "^6.1.0"
email-validator = "^2.2.0"
motor = "^3.7.1"
faker = "^37.3.0"
celery = "^5.4.0" # Add Celery dependency
aioboto3 = "^12.0.0" # For SQS if needed, but generally good for async AWS
phonenumbers = "^9.0.5"
pydantic-extra-types = "^2.10.4"
faker-crypto = "^1.0.0"
psycopg2 = "^2.9.10"
duckduckgo-search = "^8.0.2"
pillow = "^11.2.1"
requests = "^2.32.3"
python-slugify = "^8.0.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-asyncio = "^1.0.0"
pytest-mock = "^3.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"