[project]
name = "mcp-dice-roller"
version = "0.1.0"
description = "A simple MCP server for rolling dice - perfect for tabletop games, random decisions, and more"
authors = [
{name = "Vandewilly Silva", email = "vandewilly@gmail.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["mcp", "dice", "roller", "tabletop", "rpg", "random"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/vandewilly/mcp-dice-roller"
Repository = "https://github.com/vandewilly/mcp-dice-roller"
Issues = "https://github.com/vandewilly/mcp-dice-roller/issues"
[project.scripts]
mcp-dice-roller = "mcp_dice_roller:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_dice_roller"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
"/server.json",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]