pyproject.toml•1.17 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jekyll-mcp-server"
version = "0.1.0"
description = "MCP server for Jekyll blog content indexing and search"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Joseph B. Ottinger", email = "joeo@enigmastation.com" }
]
keywords = ["mcp", "jekyll", "blog", "ai", "claude"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"python-frontmatter>=1.0.0",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
jekyll-mcp-server = "jekyll_mcp.server:main"
[project.urls]
Homepage = "https://github.com/jottinger/jekyll-mcp-server"
Issues = "https://github.com/jottinger/jekyll-mcp-server/issues"
[tool.hatch.build.targets.wheel]
packages = ["jekyll_mcp"]