-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.74 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
[project]
name = "canton-mcp-server"
version = "0.1.0"
description = "MCP server for Canton blockchain development with DAML validation, authorization patterns, DCAP performance tracking, and x402 payments"
readme = "README.md"
authors = [
{ name = "empea-careercriminal", email = "empeamtk@googlemail.com" }
]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"x402>=0.1.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
"watchdog>=4.0.0",
"pyyaml>=6.0.0",
"jsonschema>=4.0.0",
"anthropic>=0.34.0",
"chromadb>=0.4.0",
"docker>=7.1.0",
"websockets>=12.0",
"pyjwt>=2.8.0",
"httpx>=0.27.0",
"pynacl>=1.5.0",
]
keywords = ["canton", "daml", "blockchain", "mcp", "digital-asset"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
gpu = [
"sentence-transformers>=2.2.0",
"torch>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/empea-careercriminal/canton-mcp-server"
Repository = "https://github.com/empea-careercriminal/canton-mcp-server"
[project.scripts]
canton-mcp-server = "canton_mcp_server.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.force-include]
"src/canton_mcp_server/terms_of_service.txt" = "canton_mcp_server/terms_of_service.txt"
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=0.23.0",
"ruff>=0.8.0",
"mypy>=1.11.0",
]