-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
94 lines (71 loc) · 2.02 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "graphfleet"
version = "0.5.40"
description = "Advanced implementation of GraphRAG for enhanced LLM reasoning"
authors = ["Zachary <[email protected]>"]
license = "Apache-2.0"
readme = ["README.md", "SECURITY.md", "CONTRIBUTING.md"]
repository = "https://github.com/Qredence/GraphFleet"
keywords = ["knowledge", "graph", "rag", "agentic", "agent"]
[tool.poetry.dependencies]
python = "^3.11.2,<3.13"
fastapi = "^0.110.1"
pydantic = "^2.0"
uvicorn = {extras = ["standard"], version = "^0.25.0"}
httpx = "^0.27.0"
asyncpg = "^0.29.0"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.0"}
alembic = "^1.13.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.9"
structlog = "^24.1.0"
graphrag = "^0.3.2"
# AI and LLM dependencies
openai = "^1.35.7"
tiktoken = "^0.7.0"
transformers = "^4.44.2"
# Data Science dependencies
numpy = "^1.25.2"
pandas = "^2.2.2"
scikit-learn = "^1.5.1"
networkx = "^3.0"
pydantic-settings = "^2.4.0"
streamlit-nightly = "^1.38.1.dev20240828"
sseclient-py = "^1.8.0"
sentry-sdk = {extras = ["fastapi"], version = "^2.13.0"}
langsmith = "^0.1.108"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.24.0"
black = "^24.1.0"
isort = "^5.13.0"
mypy = "^1.8.0"
flake8 = "^7.1.1"
pre-commit = "^3.6.0"
ipykernel = "^6.29.5"
[tool.poetry.extras]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S", "D", "ANN", "T201", "ASYNC", "ARG", "PTH", "TRY"]
"examples/*" = ["S", "D", "ANN", "T201", "PTH", "TRY", "PERF"]
"graphrag/index/config/*" = ["TCH"]
"*.ipynb" = ["T201"]