-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
52 lines (51 loc) · 1.48 KB
/
setup.py
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
from setuptools import setup
setup(
name="personal-graph",
version="2.2",
description="Graph database in LibSQL",
author="Anubhuti Bhardwaj",
author_email="[email protected]",
license="MIT",
package_data={"personal_graph": ["py.typed"]},
packages=["personal_graph"],
install_requires=[
"graphviz>=0.20.1",
"jinja2>=3.1.3",
"python-dotenv>=1.0.1",
"sqlite-vss>=0.1.2",
"openai>=1.14.2",
"libsql-experimental>=0.0.28",
"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[default]>=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",
"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",
],
extras_require={
"dev": [
"pytest>=8.1.1",
"ruff>=0.3.2",
"mypy>=1.9.0",
"fhir-resources>=7.1.0",
"libsql-experimental>=0.0.34",
],
"scrollable-textbox": ["streamlit-scrollable-textbox"],
"turso": ["libsql-experimental"],
"fhir": ["fhir-resources", "r4"],
},
python_requires=">=3.11",
)