22 lines
510 B
TOML
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"]
|