[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "competitive-intelligence-mcp"
version = "0.1.0"
description = "MCP tool for competitive intelligence and daily planning"
authors = [{name = "Jon High", email = "jon@example.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.13.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"python-dotenv>=1.0.0",
"google-api-python-client>=2.100.0",
"google-auth-oauthlib>=1.1.0",
"schedule>=1.2.0",
"pydantic>=2.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.7.0",
]
[project.scripts]
start = "python src/server.py"
test = "pytest tests/"
lint = "black src/ tests/ && isort src/ tests/"
type-check = "mypy src/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true