pyproject.toml•961 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "apollo-mcp-server"
version = "0.1.0"
description = "Apollo.io MCP Server for retrieving account, people, and intent data"
authors = [{name = "Apollo MCP", email = "apollo@mcp.dev"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.3.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.scripts]
apollo-mcp-server = "src.apollo_mcp_server:main"