Files
wehub-resource-sync 1443d3fdf9
Ruff Format Check / Ruff Format & Lint (push) Failing after 7m39s
Deploy VitePress site to Pages / build (push) Failing after 9m11s
Deploy VitePress site to Pages / Deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:32:26 +08:00

51 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yuxi-cli"
version = "0.1.2"
description = "Yuxi command line client"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Wenjie Zhang" }]
license = "MIT"
keywords = ["yuxi", "cli", "rag", "knowledge-base", "agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
]
dependencies = [
"httpx>=0.27",
"langfuse>=4.0.0",
"packaging>=24",
"questionary>=2.1.0",
"rich>=13.7",
"typer>=0.16",
]
[project.urls]
Homepage = "https://github.com/xerrors/Yuxi"
Repository = "https://github.com/xerrors/Yuxi"
Issues = "https://github.com/xerrors/Yuxi/issues"
[project.scripts]
yuxi = "yuxi_cli.main:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
test = [
"pytest>=8",
]