-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (48 loc) · 849 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "codexify-api"
version = "0.1.0"
description = "semantic search platform"
authors = ["Sid Mohan <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = "^3.12"
fast-vector-similarity = "*"
aioredis = "*"
aioredlock = "*"
aiosqlite = "*"
apscheduler = "*"
faiss-cpu = "*"
fastapi = "*"
faster-whisper = "*"
filelock = "*"
httpx = "*"
llama-cpp-python = "*"
magika = "*"
mutagen = "*"
nvgpu = "*"
pandas = "*"
pillow = "*"
psutil = "*"
pydantic = "*"
PyPDF2 = "*"
pytest = "*"
python-multipart = "*"
pytz = "*"
redis = "*"
rq = "*"
ruff = "*"
scipy = "*"
scikit-learn = "*"
sqlalchemy = "*"
textract-py3 = "*"
uvicorn = "*"
uvloop = "*"
zstandard = "*"
greenlet = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"