Files
wehub-resource-sync a0c8464e58
Build Package / build (ubuntu-latest) (push) Failing after 1s
CodeQL / Analyze (python) (push) Failing after 1s
Core Typecheck / core-typecheck (push) Failing after 1s
Linting / lint (push) Failing after 1s
llama-dev tests / test-llama-dev (push) Failing after 1s
Publish Sub-Package to PyPI if Needed / publish_subpackage_if_needed (push) Has been skipped
Sync Docs to Developer Hub / sync-docs (push) Failing after 0s
Build Package / build (windows-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:26:52 +08:00

41 lines
900 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"diff-cover>=9.2.4",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
]
[project]
name = "llama-dev"
version = "0.1"
description = "The official CLI for development, testing, and automation in the LlamaIndex monorepo"
readme = "README.md"
authors = [{name = "LlamaIndex"}]
license = "MIT"
requires-python = ">=3.9.17"
classifiers = []
dependencies = [
"click",
"packaging>=25.0",
"rich>=14.0.0",
"tomli>=2.2.1",
]
[project.scripts]
llama-dev = "llama_dev.cli:cli"
[project.urls]
Homepage = "https://github.com/run-llama/llama-index"
Changelog = "https://github.com/run-llama/llama-index/llama-dev/CHANGELOG.md"
Issues = "https://github.com/run-llama/llama-index/issues"
CI = "https://github.com/run-llama/llama-index/actions"
[tool.coverage.run]
omit = [
"__main__.py",
]