pyproject.toml•1.29 kB
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-open-data-hk"
version = "0.2.3"
description = "MCP server for accessing data.gov.hk open data"
readme = "README.md"
authors = [{name = "Tony Chan", email = "chankwongyintony@gmail.com"}]
license = {text = "MIT"}
dependencies = [
"fastmcp>=0.1.0",
"httpx>=0.27.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"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"
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-asyncio>=0.14.0",
]
dev = [
"black>=22.0",
"flake8>=4.0",
]
[project.scripts]
mcp-open-data-hk = "mcp_open_data_hk:main"
[project.urls]
Homepage = "https://github.com/mcp-open-data-hk/mcp-open-data-hk"
Repository = "https://github.com/mcp-open-data-hk/mcp-open-data-hk"
Issues = "https://github.com/mcp-open-data-hk/mcp-open-data-hk/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
testpaths = ["tests"]