pyproject.tomlā¢1.56 kB
[project]
name = "skill-mcp"
version = "0.1.1"
description = "A Model Context Protocol (MCP) server for managing Claude skills"
authors = [
{name = "fkesheh"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["mcp", "claude", "skills", "model-context-protocol", "ai", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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 :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
]
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
]
[project.scripts]
skill-mcp-server = "skill_mcp.server:run"
[project.urls]
Homepage = "https://github.com/fkesheh/skill-mcp"
Documentation = "https://github.com/fkesheh/skill-mcp#readme"
Repository = "https://github.com/fkesheh/skill-mcp"
Issues = "https://github.com/fkesheh/skill-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/skill_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"