pyproject.toml•1.97 kB
[project]
name = "epa-envirofacts-mcp"
version = "1.0.0"
description = "MCP server for accessing EPA environmental data through Envirofacts API"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "EPA Envirofacts MCP Team" }
]
keywords = ["mcp", "epa", "environmental-data", "envirofacts", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"tenacity>=8.0.0",
"geopy>=2.4.0",
"structlog>=24.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-httpx>=0.30.0",
"pytest-cov>=4.1.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/epa-envirofacts-mcp"
Documentation = "https://github.com/yourusername/epa-envirofacts-mcp#readme"
Repository = "https://github.com/yourusername/epa-envirofacts-mcp"
Issues = "https://github.com/yourusername/epa-envirofacts-mcp/issues"
[project.scripts]
epa-envirofacts-mcp = "server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]