pyproject.toml•1.62 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "beijing-time-mcp"
version = "0.1.1"
description = "MCP server for querying Beijing time"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Archer Liu", email = "archer@example.com"},
]
keywords = ["mcp", "time", "beijing", "server"]
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",
]
dependencies = [
"mcp>=1.0.0",
"pytz>=2023.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/archerliu/beijing-time-mcp"
Repository = "https://github.com/archerliu/beijing-time-mcp"
Issues = "https://github.com/archerliu/beijing-time-mcp/issues"
[project.scripts]
beijing-time-mcp = "beijing_time_mcp.server:main_wrapper"
[tool.setuptools.packages.find]
where = ["."]
include = ["beijing_time_mcp*"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true