AgentToolStore / client /pyproject.toml
ToolStore Agent
feat: add skill support to server + skill publish CLI command
73c14f6
Raw
History Blame Contribute Delete
742 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "toolstore"
version = "2.0.0"
description = "ToolStore v2 — MCP Client + Skills Manager + MCP Server. The universal tool platform for AI agents."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "ToolStore Team" },
]
dependencies = [
"typer[all]>=0.9.0",
"httpx>=0.25.0",
"pydantic>=2.5.0",
"rich>=13.6.0",
]
[project.scripts]
toolstore = "toolstore.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/toolstore"]
include = [
"src/toolstore/management/static/**/*",
]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]