pyproject.toml•817 B
[project]
name = "stata-mcp"
version = "2.0.0"
description = "Let LLM help you achieve your regression analysis with Stata"
readme = "README.md"
authors = [
{ name = "SongTan", email = "sepinetam@gmail.com" }
]
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
dependencies = [
"python-dotenv>=1.1.1",
"mcp[cli]>=1.14.0",
"pandas>=2.3.0",
"pexpect>=4.9.0",
"flask>=2.3.0",
"jupyter-client>=8.6.3",
"stata-kernel>=1.12.2",
"openpyxl>=3.1.5",
"notebook>=7.4.5",
"jupyter>=1.1.1",
"pystata>=0.0.1",
]
[project.scripts]
stata-mcp = "stata_mcp.cli:main"
webui = "stata_mcp.webui:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://www.statamcp.com"
Source = "https://github.com/sepinetam/stata-mcp"