[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stella-mcp"
version = "0.4.0"
description = "MCP server for creating and manipulating Stella system dynamics models (.stmx files)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{ name = "EEPS3230 Biogeochemistry" }
]
classifiers = [
"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.scripts]
stella-mcp = "stella_mcp.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["stella_mcp*"]
[tool.setuptools]
license-files = []