-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (78 loc) · 2.7 KB
/
pyproject.toml
File metadata and controls
91 lines (78 loc) · 2.7 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
[project]
name = "m2m-mcp-server-ssh-server"
version = "0.1.3"
description = "M2M MCP Server SSH Server for accepting remote clients through a secure SSH channel."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Machine To Machine" }]
maintainers = [
{ name = "Will Pak", email = "will@machinetomachine.ai" },
{ name = "Harold Bott Jr.", email = "harold@machinetomachine.ai" }
]
keywords = ["m2m", "mcp", "remote", "llm", "automation", "decentralized", "ssh", "server"]
license = { text = "MIT" }
license-files = ["LICEN[CS]E*"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"anyio>=4.5.0",
"asyncssh>=2.20.0",
"mcp>=1.10.1",
"pydantic>=2.0.0",
]
# Define optional dependencies
[project.optional-dependencies]
key-server = [
"aiohttp>=3.11.16",
]
dev = [
"bandit>=1.7.7",
"pip-audit>=2.6.1",
"ruff>=0.11.4",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.urls]
Homepage = "https://www.machinetomachine.ai/"
Repository = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server.git"
Issues = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server/issues"
Documentation = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server/blob/main/README.md"
Changelog = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server/blob/main/CHANGELOG.md"
"Source Code" = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server"
Security = "https://github.com/Machine-To-Machine/m2m-mcp-server-ssh-server/blob/main/SECURITY.md"
[project.scripts]
m2m-mcp-server-ssh-server = "m2m_mcp_server_ssh_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "S", "B", "A", "C4", "T10", "N"]
ignore = []
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101"]
[tool.uv.workspace]
members = ["."]
[tool.uv.sources]
m2m-mcp-server-ssh-server = { workspace = true }
[tool.hatch.build.targets.wheel]
include = ["src/m2m_mcp_server_ssh_server/templates/*.html"]
[tool.hatch.build.targets.sdist]
include = ["src/m2m_mcp_server_ssh_server/templates/*.html"]
# This ensures templates are included in the package
[tool.hatch.build]
packages = ["src/m2m_mcp_server_ssh_server"]
include = ["src/m2m_mcp_server_ssh_server/templates/*.html"]