[project]
name = "meme-generator-mcp"
version = "0.1.0"
description = "MCP server for generating memes with text overlays"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"fastmcp",
"pillow>=10.0.0",
]
[project.scripts]
meme-generator-mcp = "app.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.hatch.build.targets.sdist]
include = [
"app/",
"README.md",
"LICENSE",
]