Files
zk-data-agent/pyproject.toml
2026-05-12 21:27:43 +08:00

69 lines
1.4 KiB
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "claw-code-agent"
version = "0.1.0"
description = "No Rust. Easy to work with. Fast to iterate."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Claw Code Agent Contributors" }
]
keywords = [
"agent",
"cli",
"coding-agent",
"local-model",
"python",
"qwen",
"vllm"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"fastapi>=0.110",
"uvicorn>=0.27",
"pydantic>=2.5",
"openpyxl>=3.1",
"pyarrow>=15",
"requests>=2.31",
"websocket-client>=1.7",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28",
]
[project.urls]
Homepage = "https://github.com/HarnessLab/claw-code-agent"
Repository = "https://github.com/HarnessLab/claw-code-agent"
[project.scripts]
claw-code-agent = "src.main:main"
claw-code-gui = "src.gui.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "backend*"]
[tool.setuptools.package-data]
src = [
"reference_data/*.json",
]