[project] name = "mcserial" version = "2025.01.27" description = "MCP Serial Port Server - FastMCP server for serial port access" readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "Ryan Malloy", email = "ryan@supported.systems" }] keywords = ["mcp", "serial", "fastmcp", "pyserial", "uart", "rs232"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Communications", "Topic :: System :: Hardware", ] dependencies = [ "fastmcp>=2.14.4", "pyserial>=3.5", ] [project.optional-dependencies] dev = [ "ruff>=0.9.0", "pytest>=8.0.0", ] [project.scripts] mcserial = "mcserial:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/mcserial"] [tool.ruff] target-version = "py310" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] ignore = ["E501"] [tool.ruff.lint.isort] known-first-party = ["mcserial"]