pyproject.toml•1.47 kB
[project]
name = "lunchmoney-mcp"
version = "0.1.4"
description = "MCP server for Lunch Money API"
authors = [
{name = "Assistant", email = "assistant@example.com"}
]
dependencies = [
"mcp[cli]>=1.0.0",
"httpx>=0.24.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0"
]
requires-python = ">=3.8"
license = {text = "MIT"}
readme = "README.md"
keywords = ["mcp", "lunch-money", "personal-finance", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/MatiasL13/lunchmoney-mcp"
Documentation = "https://github.com/MatiasL13/lunchmoney-mcp#readme"
Repository = "https://github.com/MatiasL13/lunchmoney-mcp"
Issues = "https://github.com/MatiasL13/lunchmoney-mcp/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
"build>=1.0.0",
"twine>=4.0.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
lunchmoney-mcp = "lunchmoney_mcp.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["lunchmoney_mcp*"]