pyproject.tomlā¢1.1 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "propublica-mcp"
version = "0.1.1"
description = "ProPublica Nonprofit Explorer MCP Server"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Developer", email = "dev@example.com"}
]
dependencies = [
"fastmcp>=2.12.2",
"pydantic>=2.11.7",
"httpx>=0.28.1",
"python-dotenv>=1.1.1",
"aiofiles>=24.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.1.0",
"pytest-httpx>=0.35.0",
"black>=25.1.0",
"flake8>=7.3.0",
"isort>=6.0.1",
"pre-commit>=4.3.0",
]
[project.scripts]
propublica-mcp = "propublica_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"