mirror of
https://github.com/microsoft/graphrag.git
synced 2026-01-14 00:57:23 +08:00
Some checks are pending
gh-pages / build (push) Waiting to run
Python CI / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python CI / python-ci (ubuntu-latest, 3.11) (push) Waiting to run
Python CI / python-ci (windows-latest, 3.10) (push) Waiting to run
Python CI / python-ci (windows-latest, 3.11) (push) Waiting to run
Python Integration Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Integration Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Python Notebook Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Notebook Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Python Publish (pypi) / Upload release to PyPI (push) Waiting to run
Python Smoke Tests / python-ci (ubuntu-latest, 3.10) (push) Waiting to run
Python Smoke Tests / python-ci (windows-latest, 3.10) (push) Waiting to run
Spellcheck / spellcheck (push) Waiting to run
* Initial plan * Switch from Poetry to uv for package management Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * Clean up build artifacts and update gitignore Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * remove build artifacts * remove hardcoded version string * fix calls to pip in cicd * Update gh-pages.yml workflow to use uv instead of Poetry Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * ruff formatting fixes * update cicd workflow with latest uv action * fix command to retrieve package version * update development instructions * remove Poetry references * Replace deprecated azuright action with npm-based Azurite installation Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * skip api version check for azurite * add semversioner file * update more changes from switching to UV * Migrate unified-search-app from Poetry to uv package management Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> * minor typo update * minor Dockerfile update * update cicd thresholds * update pytest thresholds * ruff fixes * ruff fixes * remove legacy npm settings that no longer apply * Update Unified Search App Readme --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jgbradley1 <654554+jgbradley1@users.noreply.github.com> Co-authored-by: Josh Bradley <joshbradley@microsoft.com> Co-authored-by: Alonso Guevara <alonsog@microsoft.com>
46 lines
978 B
TOML
46 lines
978 B
TOML
[project]
|
|
name = "unified-copilot"
|
|
version = "1.0.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "GraphRAG team"},
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.12"
|
|
|
|
dependencies = [
|
|
"streamlit==1.43.0",
|
|
"azure-search-documents>=11.4.0",
|
|
"azure-storage-blob>=12.20.0",
|
|
"azure-identity>=1.16.0",
|
|
"graphrag==2.0.0",
|
|
"altair>=5.3.0",
|
|
"streamlit-agraph>=0.0.45",
|
|
"st-tabs>=0.1.1",
|
|
"spacy>=3.8.4,<4.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"poethepoet>=0.26.1",
|
|
"ipykernel>=6.29.4",
|
|
"pyright>=1.1.349",
|
|
"ruff>=0.4.7",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|
|
exclude = ["images*"]
|
|
|
|
[tool.poe.tasks]
|
|
start = "streamlit run app/home_page.py"
|
|
start_prod = "streamlit run app/home_page.py --server.port=8501 --server.address=0.0.0.0"
|
|
|
|
[tool.pyright]
|
|
include = ["app"]
|
|
exclude = ["**/node_modules", "**/__pycache__"]
|