-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 996 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
26
27
28
29
30
31
32
33
34
35
[project]
name = "decision-mcp-server"
version = "0.9.0"
description = "An MCP Server enabling integration with IBM Decision Server Runtime to retrieve and invoke decision services."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [ "mcp>=1.12.2","requests","pyyaml","jsonref","validator_collection","PyJWT","cryptography"]
[[project.authors]]
name = "laurent grateau"
email = "laurent.grateau@fr.ibm.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyjwt>=2.12.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"pytest-html>=4.1.1",
"responses>=0.25.8",
"urllib3>=2.7.0",
"validator-collection>=1.5.0",
"starlette>=0.49.1",
"python-multipart>=0.0.27",
"mcp>=1.23.0",
"cryptography>=46.0.7",
]
[project.scripts]
decision-mcp-server = "decision_mcp_server:main"
ibm-odm-decision-mcp-server = "decision_mcp_server:main"
start = "decision_mcp_server:main"