[build-system]
requires = ["setuptools>=61.0,<77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcpkmn-showdown"
version = "1.0.7"
description = "Pokemon Showdown MCP Server - Pokemon data lookup tools for LLMs via Model Context Protocol"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{ name = "Andrew Sung", email = "drewsungg@gmail.com" }
]
keywords = [
"pokemon",
"showdown",
"mcp",
"model-context-protocol",
"llm",
"claude",
"ai",
"competitive-pokemon"
]
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",
"Topic :: Games/Entertainment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/drewsungg/mcpkmn-showdown"
Repository = "https://github.com/drewsungg/mcpkmn-showdown"
Issues = "https://github.com/drewsungg/mcpkmn-showdown/issues"
License = "https://github.com/drewsungg/mcpkmn-showdown?tab=MIT-1-ov-file"
[project.scripts]
mcpkmn-showdown = "mcpkmn_showdown.pokemon_server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["mcpkmn_showdown*"]
[tool.setuptools.package-data]
"mcpkmn_showdown" = ["cache/*.json"]
"mcpkmn_showdown.cache" = ["*.json"]