-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.43 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
[tool.poetry]
name = "llm-graph-ai"
version = "0.1.0"
description = "LLM / Graph AI / Knowledge Graph Experiments for Natural Language is all a Graph Needs"
authors = ["Russell Jurney <rjurney@graphlet.ai>"]
license = "MIT"
readme = "README.md"
packages = [{include = "llm_graph_ai"}]
[project.urls]
"Blog Post" = "https://www.linkedin.com/pulse/instructglm-knowledge-graphsrepresentedbyllms-russell-jurney/?trackingId=slyb9SVqTeemAVP8d4Zz5Q%3D%3D"
"Author Homepage" = "https://linkedin.com/in/russelljurney"
"Company Homepage" = "https://graphlet.ai"
"Code Repository" = "https://github.com/Graphlet-AI/llm-graph-ai"
"Bug Tracker" = "https://github.com/Graphlet-AI/llm-graph-ai/issues"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^0.28.0"
chromadb = "^0.4.13"
langchain = "^0.0.301"
pypdf = "^3.16.2"
aws-cdk-lib = "^2.97.0"
llama-index = "^0.8.33"
marko = "^2.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
flake8 = "^6.1.0"
isort = "^5.12.0"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
ipython = "^8.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py310"]
include = ["llm_graph_ai", "test"]
[tool.isort]
profile = "black"
src_paths = ["llm_graph_ai", "test"]
[tool.mypy]
python_version = "3.10"
mypy_path = ["llm_graph_ai", "test"]
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true