[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "latex-resume-mcp"
version = "0.1.0"
description = "MCP server for creating, editing, and compiling LaTeX resumes"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Danny Liu" }
]
keywords = ["mcp", "latex", "resume", "cv", "claude", "ai"]
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",
]
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
]
[project.scripts]
latex-resume-mcp = "latex_resume_mcp:main"
[project.urls]
Homepage = "https://github.com/dannywillowliu-uchi/resume_mcp"
Repository = "https://github.com/dannywillowliu-uchi/resume_mcp"
Issues = "https://github.com/dannywillowliu-uchi/resume_mcp/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/latex_resume_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]