[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "case-study-mcp-server"
version = "0.1.0"
description = "MCP server for generating case studies using Gemma3 and GitHub analysis"
authors = [
{name = "Case Study MCP", email = "dev@example.com"},
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# MCP Server SDK
"mcp>=1.0.0",
# Ollama client for Gemma3 integration
"ollama>=0.2.0",
# HTTP requests for API calls
"requests>=2.31.0",
# GitHub API client
"PyGithub>=2.1.0",
# Environment variables
"python-dotenv>=1.0.0",
# JSON schema validation
"jsonschema>=4.19.0",
# Async support
"aiohttp>=3.9.0",
# Type hints
"typing-extensions>=4.8.0",
# Web search for company research
"tavily-python>=0.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.7.0",
"isort>=5.12.0",
"mypy>=1.5.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/example/case-study-mcp-server"
Repository = "https://github.com/example/case-study-mcp-server.git"
Issues = "https://github.com/example/case-study-mcp-server/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["*.py"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true