mirror of
https://github.com/run-llama/llama_deploy.git
synced 2026-07-01 21:04:00 -04:00
30 lines
730 B
TOML
30 lines
730 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "docs"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [{name = "Your Name", email = "you@example.com"}]
|
|
requires-python = "~=3.11"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"llama_deploy[awssqs, rabbitmq, kafka, redis]",
|
|
"mkdocs>=1.6.1,<2",
|
|
"mkdocstrings[python]>=0.26.1,<0.27",
|
|
"mkdocs-include-dir-to-nav>=1.2.0,<2",
|
|
"mkdocs-material>=9.5.39,<10",
|
|
"mkdocs-redirects>=1.2.1,<2",
|
|
"mkdocs-click>=0.8.1,<0.9",
|
|
"mkdocs-render-swagger-plugin>=0.1.2,<0.2",
|
|
"griffe-fieldz>=0.2.0,<0.3",
|
|
"mkdocs-github-admonitions-plugin>=0.0.3,<0.0.4"
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.uv.sources]
|
|
llama_deploy = {path = "../", editable = true}
|