pyproject.toml•855 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "turbify-mcp"
version = "0.1.0"
description = "Tubify Store MCP Server for catalog management"
authors = [
{name = "Ben Schwartz", email = "benpeke@yahoo.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lxml>=6.0.0",
"mcp[cli]>=1.12.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.10.1",
"requests>=2.25.0",
"urllib3>=1.26.0",
"xmlschema>=4.1.0",
"xsdata[cli]>=25.7",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/turbify_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
]
[project.scripts]
turbify-mcp = "turbify_mcp.server:main"