-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.39 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
[tool.poetry]
name = "personal-graph"
version = "2.2"
description = "Graph database in LibSQL"
authors = ["Anubhuti Bhardwaj <[email protected]>"]
license = "MIT"
readme = "README.md"
exclude = [
{ path = "examples/personal-graph.ipynb" }
]
[tool.poetry.dependencies]
python = "^3.11"
graphviz = "^0.20.1"
jinja2 = "^3.1.3"
python-dotenv = "^1.0.1"
sqlite-vss = "^0.1.2"
openai = "^1.14.2"
pytest = "^8.1.1"
pytest-mock = "^3.14.0"
fastapi = "^0.110.0"
uvicorn = "^0.29.0"
sqlean-py = "^3.45.1"
streamlit = "^1.33.0"
types-pygments = "^2.17.0.20240310"
types-decorator = "^5.1.8.20240310"
networkx = {extras = ["default"], version = "^3.3"}
litellm = "^1.35.26"
dspy-ai = "2.3.0"
instructor = "^1.2.2"
vlite = "^0.2.7"
ollama = "^0.2.0"
owlready2 = "^0.46"
fhir-resources = {version = "^7.1.0", optional=true}
plotly = "^5.22.0"
nbformat = "^5.10.4"
nbclient = "^0.10.0"
types-requests = "^2.32.0.20240622"
jsonschema = "^4.23.0"
types-jsonschema = "^4.23.0.20240712"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
ruff = "^0.3.2"
mypy = "^1.9.0"
fhir-resources = "^7.1.0"
libsql-experimental = "^0.0.34"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.3"
[tool.poetry.extras]
scrollable-textbox = ["streamlit-scrollable-textbox"]
turso = ["libsql-experimental"]
fhir = ["fhir-resources", "r4"]
[build-system]
requires = [
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"