51 lines
1.1 KiB
TOML
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",
|
|
]
|