mirror of
https://github.com/val1813/kwcode.git
synced 2026-09-09 17:38:12 +08:00
36 lines
756 B
TOML
36 lines
756 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kaiwu"
|
|
version = "0.4.0"
|
|
description = "Local-model coding agent with MoE expert pipeline"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"llama-cpp-python>=0.2.90",
|
|
"typer>=0.12.0",
|
|
"rich>=13.0.0",
|
|
"pydantic>=2.0.0",
|
|
"httpx>=0.27.0",
|
|
"gitpython>=3.1.0",
|
|
"psutil>=5.9.0",
|
|
"beautifulsoup4>=4.12.0",
|
|
"lxml>=5.0.0",
|
|
"trafilatura>=1.12.0",
|
|
"pyyaml>=6.0",
|
|
"tree-sitter>=0.23.0",
|
|
"tree-sitter-python>=0.23.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
kaiwu = "kaiwu.cli.main:app"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["kaiwu*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"kaiwu.builtin_experts" = ["*.yaml"]
|