-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
103 lines (99 loc) · 2.55 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "ddgai"
version = "0.1.0"
description = ""
authors = ["Dev Aggarwal <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
streamlit = "^1.15.2"
openai = "^1.52.2"
python-decouple = "^3.6"
requests = "^2.28.1"
glom = "^22.1.0"
parse = "^1.19.0"
pandas = "^2.0.1"
google-cloud-firestore = "^2.7.0"
replicate = "^0.15.4"
fastapi = "^0.85.0"
uvicorn = { extras = ["standard"], version = "^0.18.3" }
firebase-admin = "^6.0.0"
# mediapipe for M1 macs
mediapipe-silicon = { version = "^0.9.2", markers = "platform_machine == 'arm64'", platform = "darwin" }
# mediapipe for others
mediapipe = { version = "^0.9.2", markers = "platform_machine != 'arm64'" }
furl = "^2.1.3"
itsdangerous = "^2.1.2"
pytest = "^7.2.0"
google-cloud-texttospeech = "^2.12.1"
Wand = "^0.6.10"
readability-lxml = "^0.8.1"
transformers = "^4.24.0"
stripe = "^10.3.0"
python-multipart = "^0.0.6"
html-sanitizer = "^2.4.4"
plotly = "^5.11.0"
httpx = "^0.23.1"
pyquery = "^1.4.3"
redis = "^4.5.1"
pytest-xdist = "^3.2.0"
requests-html = "^0.10.0"
pdftotext = "^2.2.2"
"pdfminer.six" = "^20221105"
google-api-python-client = "^2.80.0"
oauth2client = "^4.1.3"
tiktoken = "^0.7.0"
google-cloud-translate = "^3.12.0"
google-cloud-speech = "^2.21.0"
yt-dlp = "^2024.8.6"
Jinja2 = "^3.1.2"
Django = "^5.1.1"
django-phonenumber-field = { extras = ["phonenumberslite"], version = "^7.0.2" }
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.6"
whitenoise = "^6.4.0"
black = "^24.2.0"
django-extensions = "^3.2.1"
pytest-django = "^4.5.2"
celery = "^5.3.1"
qrcode = "^7.4.2"
opencv-contrib-python = "^4.7.0.72"
numpy = "^1.25.0"
pyzbar = "^0.1.9"
gspread = "^5.10.0"
hashids = "^1.3.1"
langcodes = "^3.3.0"
language-data = "^1.1"
simplejson = "^3.19.1"
tabulate = "^0.9.0"
deepgram-sdk = "^2.11.0"
scipy = "^1.11.2"
rank-bm25 = "^0.2.2"
pytest-subtests = "^0.11.0"
anyio = "^3.4.0"
pyyaml = "^6.0.1"
ua-parser = "^0.18.0"
user-agents = "^2.2.0"
openpyxl = "^3.1.2"
loguru = "^0.7.2"
aifail = "^0.3.0"
pytest-playwright = "^0.4.3"
emoji = "^2.10.1"
pyvespa = "^0.39.0"
anthropic = "^0.34.1"
azure-cognitiveservices-speech = "^1.37.0"
twilio = "^9.2.3"
sentry-sdk = {version = "1.45.0", extras = ["loguru"]}
gooey-gui = "^0.3.0"
django-safedelete = "^1.4.0"
[tool.poetry.group.dev.dependencies]
watchdog = "^2.1.9"
ipython = "^8.5.0"
honcho = "^1.1.0"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
--force-exclude = "migrations|node_modules|\\.git|\\.venv|\\.env|\\.pytest_cache|\\.vscode|\\.github|\\.to"