mcp210x-uart/pyproject.toml
Ryan Malloy 0cf9ea765e Add LICENSE file and fix project URLs for PyPI
- Add MIT LICENSE file (was declared but missing)
- Fix Homepage/Repository URLs: forge → git.supported.systems
2026-02-06 21:25:32 -07:00

54 lines
1.2 KiB
TOML

[project]
name = "mcp210x-uart"
version = "0.2.0"
description = "MCP server for CP210x USB-UART bridge customization"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Ryan Malloy", email = "ryan@supported.systems"}
]
keywords = ["mcp", "cp210x", "usb", "uart", "serial", "silicon-labs"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"Topic :: System :: Hardware :: Hardware Drivers",
]
dependencies = [
"fastmcp>=2.0.0",
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
]
[project.scripts]
mcp210x-uart = "mcp210x_uart:main"
[project.urls]
Homepage = "https://git.supported.systems/MCP/mcp210x-uart"
Repository = "https://git.supported.systems/MCP/mcp210x-uart"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp210x_uart"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]