mirror of
https://github.com/microsoft/graphrag.git
synced 2026-02-03 01:32:09 +08:00
Some checks are pending
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Waiting to run
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Waiting to run
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Waiting to run
* Add GraphRAG Cache package.
44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[project]
|
|
name = "graphrag-cache"
|
|
version = "2.7.0"
|
|
description = "GraphRAG cache package."
|
|
authors = [
|
|
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
|
|
{name = "Andrés Morales Esquivel", email = "andresmor@microsoft.com"},
|
|
{name = "Chris Trevino", email = "chtrevin@microsoft.com"},
|
|
{name = "David Tittsworth", email = "datittsw@microsoft.com"},
|
|
{name = "Dayenne de Souza", email = "ddesouza@microsoft.com"},
|
|
{name = "Derek Worthen", email = "deworthe@microsoft.com"},
|
|
{name = "Gaudy Blanco Meneses", email = "gaudyb@microsoft.com"},
|
|
{name = "Ha Trinh", email = "trinhha@microsoft.com"},
|
|
{name = "Jonathan Larson", email = "jolarso@microsoft.com"},
|
|
{name = "Josh Bradley", email = "joshbradley@microsoft.com"},
|
|
{name = "Kate Lytvynets", email = "kalytv@microsoft.com"},
|
|
{name = "Kenny Zhang", email = "zhangken@microsoft.com"},
|
|
{name = "Mónica Carvajal"},
|
|
{name = "Nathan Evans", email = "naevans@microsoft.com"},
|
|
{name = "Rodrigo Racanicci", email = "rracanicci@microsoft.com"},
|
|
{name = "Sarah Smith", email = "smithsarah@microsoft.com"},
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
license-files = ["LICENSE"]
|
|
requires-python = ">=3.10,<3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"graphrag-common==2.7.0",
|
|
"graphrag-storage==2.7.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Source = "https://github.com/microsoft/graphrag"
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.27.0,<2.0.0"]
|
|
build-backend = "hatchling.build"
|