2024-06-26 15:45:06 -04:00
|
|
|
[tool.poetry]
|
|
|
|
authors = [
|
|
|
|
"Josh Bradley <joshbradley@microsoft.com>",
|
|
|
|
"Newman Cheng <newmancheng@microsoft.com>",
|
|
|
|
"Christine DiFonzo <cdifonzo@microsoft.com>",
|
|
|
|
"Gabriel Nieves <gnievesponce@microsoft.com>",
|
|
|
|
"Douglas Orbaker <dorbaker@microsoft.com>",
|
|
|
|
"Chris Sanchez <chrissanchez@microsoft.com>",
|
|
|
|
"Shane Solomon <shane.solomon@microsoft.com>",
|
2025-01-02 13:44:20 -05:00
|
|
|
"Kenny Zhang <zhangken@microsoft.com>",
|
2024-06-26 15:45:06 -04:00
|
|
|
]
|
2025-01-25 04:07:53 -05:00
|
|
|
description = "A web API wrapper around the official GraphRAG library."
|
2024-06-26 15:45:06 -04:00
|
|
|
license = "MIT"
|
2025-01-25 04:07:53 -05:00
|
|
|
name = "graphrag-app"
|
|
|
|
version = "1.2.0"
|
2024-06-26 15:45:06 -04:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "~3.10"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
detect-secrets = ">=1.5.0"
|
|
|
|
devtools = ">=0.12.2"
|
|
|
|
flake8 = ">=6.1.0"
|
|
|
|
ipython = "*"
|
|
|
|
jupyter = "*"
|
|
|
|
pre-commit = ">=3.6.0"
|
|
|
|
ruff = ">=0.1.13"
|
|
|
|
|
2024-12-30 01:59:08 -05:00
|
|
|
[tool.poetry.group.test]
|
|
|
|
optional = true
|
|
|
|
|
2024-06-26 15:45:06 -04:00
|
|
|
[tool.poetry.group.test.dependencies]
|
|
|
|
pytest = ">=8.2.1"
|
2024-12-30 01:59:08 -05:00
|
|
|
pytest-asyncio = "^0.25.0"
|
|
|
|
pytest-cov = "^6.0.0"
|
|
|
|
pytest-env = "^1.1.5"
|
|
|
|
pytest-xdist = "^3.6.1"
|
2024-06-26 15:45:06 -04:00
|
|
|
wikipedia = ">=1.4.0"
|
|
|
|
|
|
|
|
[tool.poetry.group.backend.dependencies]
|
2024-09-19 01:09:26 -04:00
|
|
|
adlfs = ">=2024.7.0"
|
2024-06-26 15:45:06 -04:00
|
|
|
attrs = ">=23.2.0"
|
|
|
|
azure-core = ">=1.30.1"
|
|
|
|
azure-cosmos = ">=4.5.1"
|
|
|
|
azure-identity = ">=1.15.0"
|
2025-01-21 00:29:48 -05:00
|
|
|
azure-monitor-opentelemetry = "^1.6.4"
|
2024-06-26 15:45:06 -04:00
|
|
|
azure-search-documents = ">=11.4.0"
|
|
|
|
azure-storage-blob = ">=12.19.0"
|
|
|
|
environs = ">=9.5.0"
|
|
|
|
fastapi = ">=0.110.0"
|
2024-12-30 00:59:35 -05:00
|
|
|
fastapi-offline = ">=1.7.3"
|
2024-06-26 15:45:06 -04:00
|
|
|
fastparquet = ">=2023.10.1"
|
|
|
|
fsspec = ">=2024.2.0"
|
2025-01-23 01:21:25 -05:00
|
|
|
graphrag = "==1.2.0"
|
2024-06-26 15:45:06 -04:00
|
|
|
httpx = ">=0.25.2"
|
|
|
|
kubernetes = ">=29.0.0"
|
|
|
|
networkx = ">=3.2.1"
|
|
|
|
nltk = "*"
|
|
|
|
pandas = ">=2.2.1"
|
|
|
|
pyaml-env = ">=1.2.1"
|
|
|
|
pyarrow = ">=15.0.0"
|
|
|
|
pydantic = ">=1.10.14"
|
|
|
|
python-multipart = ">=0.0.6"
|
|
|
|
requests = "*"
|
|
|
|
rich = ">=13.7.1"
|
|
|
|
tiktoken = ">=0.6.0"
|
|
|
|
urllib3 = ">=2.2.2"
|
2025-01-02 13:44:20 -05:00
|
|
|
uvicorn = ">=0.23.2"
|
2024-06-26 15:45:06 -04:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
indent-width = 4
|
2025-01-15 22:38:04 -05:00
|
|
|
line-length = 88
|
|
|
|
target-version = "py310"
|
2024-06-26 15:45:06 -04:00
|
|
|
|
|
|
|
[tool.ruff.format]
|
2024-09-12 21:41:46 -04:00
|
|
|
preview = true
|
2024-06-26 15:45:06 -04:00
|
|
|
quote-style = "double"
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
2025-01-15 22:38:04 -05:00
|
|
|
ignore = ["E402", "E501", "F821"]
|
2024-09-12 21:41:46 -04:00
|
|
|
preview = true
|
2024-06-26 15:45:06 -04:00
|
|
|
select = ["E", "F", "I"]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2025-01-15 22:38:04 -05:00
|
|
|
requires = ["poetry-core"]
|