pyproject.toml•1.15 kB
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hkopenai.hk_recreation_mcp_server"]
include-package-data = true
[tool.hatch.build.targets.wheel]
packages = ["hkopenai"]
[tool.bandit]
exclude_dirs = ["venv", ".venv", "tests"]
[project.urls]
repository = "https://github.com/hkopenai/hk-recreation-mcp-server.git"
[project]
name = "hkopenai.hk_recreation_mcp_server"
version = "0.1.8"
description = "Hong Kong recreation MCP Server providing recreation data tools"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Neo Chow", email = "neo@01man.com"}
]
license = "MIT"
classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent",]
dependencies = [ "fastmcp>=2.10.2", "requests>=2.31.0", "pytest>=8.2.0", "pytest-cov>=6.1.1", "modelcontextprotocol", "hkopenai_common>=0.4.0",]
[project.scripts]
hk_recreation_mcp_server = "hkopenai.hk_recreation_mcp_server.server:server"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
markers = [
"live: marks tests as live (external API calls)",
]