-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "forkd-mcp"
version = "0.2.0"
description = "Model Context Protocol server for forkd microVM sandboxes (BRANCH, diff snapshots, prewarm)"
readme = "README.md"
authors = [{name = "Deeplethe", email = "info@deeplethe.com"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
keywords = ["mcp", "model-context-protocol", "forkd", "sandbox", "ai-agents", "firecracker"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.0",
"httpx>=0.27",
]
[project.urls]
Homepage = "https://github.com/deeplethe/forkd"
Source = "https://github.com/deeplethe/forkd/tree/main/sdk/mcp"
Issues = "https://github.com/deeplethe/forkd/issues"
[project.scripts]
forkd-mcp = "forkd_mcp.server:main"
[tool.setuptools]
packages = ["forkd_mcp"]