pyproject.toml•957 B
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "resume-mcp"
version = "0.1.0"
description = "MCP Server Agent for Resume Analysis"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"adk>=0.5.0",
"mcp>=0.5.0",
"fastapi>=0.110.0",
"uvicorn>=0.27.0",
"python-multipart>=0.0.6",
"langchain>=0.1.12",
"pydantic>=2.7.1",
"pypdf>=4.1.0",
"google-generativeai>=0.3.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.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
disallow_incomplete_defs = true