-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
25 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[project]
name = "text2sim-MCP-server"
version = "2.6.0"
description = "A multi-paradigm simulation engine that supports Discrete-Event Simulation (DES) with SimPy and System Dynamics (SD) with PySD. Features advanced Model Builder tools for iterative, conversational model development. Integrates with LLMs through the Model Context Protocol (MCP) to enable sophisticated simulation capabilities in natural language environments."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.5.0",
"simpy>=4.1.1,<5.0.0",
"pysd>=3.14.3,<4.0.0",
"pandas>=2.2.3,<3.0.0",
"numpy>=2.3.3",
"jsonschema>=4.20.0,<5.0.0",
]
[project.scripts]
text2sim-mcp = "mcp_server:main"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=4.0.0",
"black>=25.1.0",
"ruff>=0.12.0",
]