pyproject.toml•774 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "grocery-search-mcp"
version = "0.1.0"
description = "MCP server for grocery price and nutrition search"
authors = [
{name = "Ajay Kallepalli", email = "ajay@example.com"}
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"beautifulsoup4>=4.12.0",
"rapidfuzz>=3.5.0",
"pydantic>=2.5.0",
"asyncio",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.7.0",
]
[project.scripts]
grocery-search-mcp = "grocery_search_mcp.server:main"
[tool.black]
line-length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true