mctelnet/pyproject.toml
Ryan Malloy a8fbd71e0c Initial mctelnet MCP server
Telnet client capabilities for LLMs with expect-style automation:
- Multi-connection management with connection IDs
- Basic send/read operations with auto-response
- expect() for pattern matching across multiple patterns
- expect_send() for classic expect-style interactions
- run_script() for full automation sequences
- Password hiding for sensitive data
2026-02-06 16:59:28 -07:00

59 lines
1.3 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mctelnet"
version = "2025.02.06"
description = "MCP server providing telnet client capabilities for LLMs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{name = "Ryan Malloy", email = "ryan@supported.systems"}
]
keywords = ["mcp", "telnet", "llm", "fastmcp", "automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
]
dependencies = [
"fastmcp>=2.0.0",
"telnetlib3>=2.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.9.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[project.scripts]
mctelnet = "mctelnet:main"
[project.urls]
Homepage = "https://git.supported.systems/rpm/mctelnet"
Repository = "https://git.supported.systems/rpm/mctelnet"
[tool.hatch.build.targets.wheel]
packages = ["src/mctelnet"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]