forked from SylphAI-Inc/AdalFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (46 loc) · 1.31 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
[tool.poetry]
name = "lightrag-project"
version = "0.1.0"
description = "A project to develop and test the lightrag library"
authors = ["Your Name <[email protected]>"]
license = "MIT"
packages = [{ from = "_lightrag", include = "lightrag" }] # empty packages list
[tool.poetry.dependencies]
python = ">=3.11, <4.0"
# lightrag = { path = "lightrag", develop = true }
torch = "^2.3.1"
# flagembedding = "^1.2.10"
openai = "^1.34.0"
networkx = "^3.3"
pyvis = "^0.3.2"
# lightrag = {path = "lightrag/dist/lightrag-0.0.0a11-py3-none-any.whl"}
lightrag = "^0.0.0a13"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
anthropic = "^0.26.0"
torchmetrics = "^1.4.0.post0"
jupyter = "^1.0.0"
ipykernel = "^6.29.4"
dataclasses-jsonschema = "^2.16.0"
groq = "^0.5.0"
pgvector = "^0.2.5"
cohere = "^5.5.8"
pydot = "^2.0.0"
matplotlib = "^3.9.0"
pyvis = "^0.3.2"
[tool.poetry.group.doc.dependencies]
pydata-sphinx-theme = "^0.15.3"
sphinx-design = "^0.6.0"
sphinx-copybutton = "^0.5.2"
sphinx = "^7.3.7"
nbsphinx = "^0.9.4"
nbconvert = "^7.16.4"
pandoc = "^2.3"
readthedocs-sphinx-search = "^0.3.2"
sqlalchemy = "^2.0.31"
google-generativeai = "^0.7.1"
faiss-cpu = "^1.8.0.post1"
lightrag = { path = "lightrag", develop = true }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"