pyproject.tomlโข976 B
[project]
name = "mcp-web-research-scraper"
version = "0.1.0"
description = "MCP tool for web scraping and research automation"
authors = [
{name = "Zeta AI", email = "alpha@zeta.command"}
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"requests>=2.28.0",
"beautifulsoup4>=4.11.0",
"urllib3>=1.26.0",
]
[project.scripts]
mcp-web-research-scraper = "mcp_scraper.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mcp_scraper"]