- MIT license file - readme, urls, keywords, classifiers in pyproject.toml - Ham radio and scientific/engineering classifiers
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[project]
|
|
name = "mcnanovna"
|
|
version = "2026.02.01"
|
|
description = "MCP server for NanoVNA-H vector network analyzers"
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.11"
|
|
keywords = ["mcp", "nanovna", "vna", "rf", "ham-radio", "antenna", "swr", "s-parameters"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Communications :: Ham Radio",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=2.14.0",
|
|
"pyserial>=3.5",
|
|
"Pillow>=11.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://mcnanovna.l.zmesh.systems"
|
|
Documentation = "https://mcnanovna.l.zmesh.systems"
|
|
Repository = "https://github.com/ryanmalloy/mcnanovna"
|
|
|
|
[project.optional-dependencies]
|
|
webui = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.34.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcnanovna = "mcnanovna.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcnanovna"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 120
|