-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (112 loc) · 3.55 KB
/
Copy pathpyproject.toml
File metadata and controls
124 lines (112 loc) · 3.55 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[project]
name = "modelrisk-mcp"
version = "0.3.13"
description = "Open MCP server bridging Anthropic Claude (and any MCP-compatible client) with the ModelRisk Excel add-in."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Vose Software", email = "info@vosesoftware.com" },
]
maintainers = [
{ name = "Vose Software", email = "info@vosesoftware.com" },
]
keywords = [
"mcp", "modelrisk", "monte-carlo", "excel", "anthropic", "claude",
"risk-analysis", "simulation", "probability", "vose",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"mcp[cli]>=1.2.0",
"numpy>=1.26",
"pydantic>=2.6",
"pyyaml>=6.0",
"xlwings>=0.31; sys_platform == 'win32'",
"pywin32>=306; sys_platform == 'win32'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
"ruff>=0.4",
"mypy>=1.10",
"pyinstaller>=6.0",
]
[project.scripts]
modelrisk-mcp = "modelrisk_mcp.__main__:main"
[project.urls]
Homepage = "https://github.com/vosesoftware/modelrisk-mcp"
Repository = "https://github.com/vosesoftware/modelrisk-mcp"
Issues = "https://github.com/vosesoftware/modelrisk-mcp/issues"
Changelog = "https://github.com/vosesoftware/modelrisk-mcp/blob/main/CHANGELOG.md"
Documentation = "https://github.com/vosesoftware/modelrisk-mcp/tree/main/docs"
"Vose Software" = "https://www.vosesoftware.com"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/modelrisk_mcp"]
[tool.hatch.build.targets.wheel.force-include]
"src/modelrisk_mcp/data/functions.json" = "modelrisk_mcp/data/functions.json"
"src/modelrisk_mcp/data/optional_overrides.yaml" = "modelrisk_mcp/data/optional_overrides.yaml"
"src/modelrisk_mcp/data/audit_rules.yaml" = "modelrisk_mcp/data/audit_rules.yaml"
"src/modelrisk_mcp/data/distributions.yaml" = "modelrisk_mcp/data/distributions.yaml"
"src/modelrisk_mcp/data/knowledge_base.md" = "modelrisk_mcp/data/knowledge_base.md"
[tool.hatch.build.targets.sdist]
include = [
"src/modelrisk_mcp",
"tests",
"scripts",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"pyproject.toml",
"uv.lock",
"modelrisk_mcp.spec",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "N", "RUF"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
[[tool.mypy.overrides]]
module = [
"xlwings.*",
"win32com.*",
"win32api.*",
"win32event.*",
"pythoncom.*",
"pywintypes.*",
"yaml.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"