pyproject.toml•703 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "prestashop-mcp"
version = "0.1.0"
description = "MCP server for searching PrestaShop documentation"
authors = [
{name = "Florinel Chis", email = "florinel.chis@example.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp",
"sqlite-utils",
"pyyaml",
]
[project.scripts]
prestashop-mcp = "prestashop_mcp.server:main"
[project.optional-dependencies]
dev = [
"mcp>=1.16.0",
"pytest",
"pytest-cov",
"black",
"flake8",
]
[tool.hatch.build.targets.wheel]
packages = ["prestashop_mcp"]
[tool.hatch.build]
include = [
"prestashop_mcp/**/*.py",
]