mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-24 05:14:30 +00:00
docs: use uv in CONTRIBUTING guide (#970)
# What does this PR do? Switch to uv for dependency management and update CONTRIBUTING.md with new setup instructions. Add missing dev dependencies to pyproject.toml and apply minor formatting fixes. Signed-off-by: Sébastien Han <seb@redhat.com> - [ ] Addresses issue (#issue) ## Test Plan Please describe: - tests you ran to verify your changes with result summaries. - provide instructions so it can be reproduced. ## Sources Please link relevant resources if necessary. ## Before submitting - [x] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [ ] Ran pre-commit to handle lint / formatting issues. - [ ] Read the [contributor guideline](https://github.com/meta-llama/llama-stack/blob/main/CONTRIBUTING.md), Pull Request section? - [ ] Updated relevant documentation. - [ ] Wrote necessary unit or integration tests. Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
403292fcf6
commit
a764b823ee
3 changed files with 568 additions and 17 deletions
|
@ -5,9 +5,7 @@ build-backend = "setuptools.build_meta"
|
|||
[project]
|
||||
name = "llama_stack"
|
||||
version = "0.1.1"
|
||||
authors = [
|
||||
{ name = "Meta Llama", email = "llama-oss@meta.com" },
|
||||
]
|
||||
authors = [{ name = "Meta Llama", email = "llama-oss@meta.com" }]
|
||||
description = "Llama Stack"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
@ -42,11 +40,23 @@ dependencies = [
|
|||
dev = [
|
||||
"pytest",
|
||||
"pytest-asyncio",
|
||||
"nbval", # For notebook testing
|
||||
"nbval", # For notebook testing
|
||||
"black",
|
||||
"ruff",
|
||||
"types-requests",
|
||||
"types-setuptools",
|
||||
"pre-commit",
|
||||
]
|
||||
docs = [
|
||||
"sphinx-autobuild",
|
||||
"myst-parser",
|
||||
"sphinx-rtd-theme",
|
||||
"sphinx-copybutton",
|
||||
"sphinx-tabs",
|
||||
"sphinx-design",
|
||||
"sphinxcontrib.redoc",
|
||||
"sphinxcontrib.video",
|
||||
"sphinxcontrib.mermaid",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
|
@ -57,7 +67,7 @@ llama = "llama_stack.cli.llama:main"
|
|||
install-wheel-from-presigned = "llama_stack.cli.scripts.run:install_wheel_from_presigned"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = {find = {}}
|
||||
packages = { find = {} }
|
||||
license-files = []
|
||||
|
||||
[[tool.uv.index]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue