pyproject.toml•1.54 kB
[project]
name = "frankfurtermcp"
version = "0.3.6"
description = "A MCP server for currency exchange rates and currency conversion using the Frankfurter API."
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [
{ name = "Anirban Basu", email = "anirbanbasu@users.noreply.github.com" }
]
keywords = ["finance", "mcp", "currency-exchange-rates", "currency-converter", "frankfurter-api", "model-context-protocol", "mcp-server", "fastmcp", "model-context-protocol-server", "mcp-composition"]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"environs>=14.3.0",
"fastmcp>=2.8.0",
"pycountry>=24.6.1",
"pydantic-extra-types>=2.10.5",
]
[project.urls]
Repository = "https://github.com/anirbanbasu/frankfurtermcp"
Issues = "https://github.com/anirbanbasu/frankfurtermcp/issues"
Download = "https://pypi.org/project/frankfurtermcp/"
[project.scripts]
frankfurtermcp = "frankfurtermcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"icecream>=2.1.4",
"pre-commit>=4.2.0",
]
test = [
"coverage>=7.10.6",
"pytest>=8.4.0",
]