Files
character-mcp/pyproject.toml
2026-03-06 19:23:05 +00:00

22 lines
510 B
TOML

[project]
name = "character-details"
version = "0.1.0"
description = "MCP server for fictional character details - storytelling and image generation"
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"beautifulsoup4>=4.12.0",
]
[project.scripts]
character-details = "character_details.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/character_details"]