[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cv-resume-builder-mcp"
version = "1.1.2"
description = "AI-powered CV and resume builder using Model Context Protocol. Automatically generates and updates your CV/resume from git commits, Jira tickets, Credly badges, and LinkedIn profile."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = [
"mcp",
"model-context-protocol",
"cv",
"resume",
"cv-builder",
"resume-builder",
"career",
"ai",
"latex",
"pdf",
"automation",
"git",
"jira",
"credly",
"linkedin",
"ats",
"ats-compliant",
"applicant-tracking-system"
]
authors = [
{ name = "CV Resume Builder MCP Contributors" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business",
]
dependencies = [
"mcp>=0.9.0",
"httpx>=0.27.0",
"pypdf>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.3.0",
]
[project.urls]
Homepage = "https://github.com/eyaab/cv-resume-builder-mcp"
Documentation = "https://github.com/eyaab/cv-resume-builder-mcp#readme"
Repository = "https://github.com/eyaab/cv-resume-builder-mcp"
Issues = "https://github.com/eyaab/cv-resume-builder-mcp/issues"
[project.scripts]
cv-resume-builder-mcp = "cv_resume_builder_mcp.server:run"
[tool.hatch.build.targets.wheel]
packages = ["src/cv_resume_builder_mcp"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = []