-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.22 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
[tool.poetry]
name = "topos"
version = "0.2.1"
description = "The official Python client for Topos."
authors = ["Dialogues <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://dialogues.ai"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27.0"
fastapi = "0.109.2"
uvicorn = "0.20.0"
websockets = "11.0.3"
ollama = "0.1.9"
spacy = "3.7.2"
pydantic = "2.7.4"
transformers = "4.40.2"
torch = "2.3.0"
diffusers = "0.27.2"
accelerate = "0.30.1"
emoji = "0.6.0"
pyyaml = "6.0.1"
python-dotenv = "1.0.0"
openai = "1.30.4"
neo4j = "^5.20.0"
nltk = "^3.8.1"
scikit-learn = "^1.5.0"
sentence-transformers = "^3.0.1"
sentencepiece = "^0.2.0"
google = "^3.0.0"
protobuf = "^5.27.1"
matplotlib = "^3.9.0"
bertopic = "^0.16.2"
umap-learn = "^0.5.6"
pyjwt = "^2.8.0"
python-multipart = "^0.0.9"
pytest-asyncio = "^0.23.7"
textblob = "^0.18.0.post0"
tk = "0.1.0"
pystray = "0.19.5"
supabase = "^2.6.0"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.23.2"
pytest-cov = "^4.1.0"
pytest-httpserver = "^1.0.8"
pillow = "^10.2.0"
ruff = "^0.1.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
topos = "topos.cli:main"