[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "marlo-mcp"
version = "0.1.20"
description = "Marlo MCP server for voyage management system for shipping companies"
requires-python = ">=3.12"
authors = [
{email= "mka@marlo.online", name= "Mathan Karthik"}
]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["mcp", "maritime", "marlo", "voyage management", "api", "client", "async"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.28.1",
"mcp[cli]>=1.10.1",
"pydantic>=2.0.0",
"python-dateutil>=2.8.2",
]
[project.optional-dependencies]
dev = [
"build>=1.2.2.post1",
"twine>=6.1.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.4.0",
"black>=24.0.0",
"mypy>=1.8.0",
]
docs = [
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.10",
]
[project.urls]
Homepage = "https://www.marlo.co/"
Repository = "https://github.com/core-marlo/marlo-mcp.git"
Documentation = "https://github.com/core-marlo/marlo-mcp#readme"
Changelog = "https://github.com/core-marlo/marlo-mcp/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["marlo_mcp"]
[project.scripts]
marlo-mcp = "marlo_mcp.main:main"
marlo-mcp-main = "marlo_mcp.main:main"