-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.79 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
[project]
name = "durable-mcp"
version = "0.7.1"
description = "Durable Model Context Protocol (MCP) helpers for building resumable MCP servers on top of Reboot durable workflows."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Reboot", email = "team@reboot.dev" }
]
keywords = ["mcp", "model-context-protocol", "durable", "workflows", "reboot"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
]
requires-python = ">=3.12.11"
dependencies = [
"reboot==0.41.0",
"mcp==1.22.0",
"uuid7-standard>=1.1.0", # Latest as of 2025/09/30.
]
[project.optional-dependencies]
dev = [
"mypy==1.2.0",
"pytest==8.4.1",
"types-protobuf>=4.24.0.20240129",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/reboot-dev/mcp-python"
Repository = "https://github.com/reboot-dev/mcp-python"
Issues = "https://github.com/reboot-dev/mcp-python/issues"
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[tool.hatch.build]
ignore-vcs = true
exclude = [
"tests",
"*.pyc",
"__pycache__",
".venv*",
"BUILD.bazel",
".devcontainer",
".python-version",
"Dockerfile",
"uv.lock",
".rbtrc",
".gitignore",
".mypy.ini",
".pytest.ini"
]
include = ["reboot", "api"]
[tool.hatch.build.sources]
"api/rbt" = "rbt"
"api/google" = "google"
[tool.hatch.build.targets.wheel]
packages = ["reboot", "rbt", "google"]
[tool.mypy]
python_version = "3.12"
strict = false