20 lines
389 B
TOML
20 lines
389 B
TOML
[project]
|
|||
|
|
name = "cities-mcp"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "A FastMCP server for managing Neocities sites"
|
||
|
|
dependencies = [
|
||
|
|
"fastmcp>=0.1.0",
|
||
|
|
"httpx>=0.27.0"
|
||
|
|
]
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
cities-mcp = "cities_mcp:mcp.run"
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["cities_mcp.py"]
|