pyproject.toml•1.64 kB
[project]
name = "claude-skills-mcp"
version = "1.0.6"
description = "Lightweight MCP proxy for Claude Skills (auto-downloads backend)"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "K-Dense AI", email = "orion.li@k-dense.ai"}
]
maintainers = [
{name = "K-Dense AI", email = "orion.li@k-dense.ai"}
]
keywords = ["mcp", "claude", "skills", "agent", "ai", "proxy"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.12,<3.13"
dependencies = [
"mcp>=1.0.0",
"httpx>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/K-Dense-AI/claude-skills-mcp"
Documentation = "https://github.com/K-Dense-AI/claude-skills-mcp/blob/main/README.md"
Repository = "https://github.com/K-Dense-AI/claude-skills-mcp"
"Bug Tracker" = "https://github.com/K-Dense-AI/claude-skills-mcp/issues"
Backend = "https://pypi.org/project/claude-skills-mcp-backend/"
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
claude-skills-mcp = "claude_skills_mcp.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/claude_skills_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --strict-markers"