Apply .gitattributes normalization to convert all CRLF line endings inherited from Windows-origin source files to Unix LF. 175 files, zero content changes.
36 lines
720 B
TOML
36 lines
720 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "skywalker-mcp"
|
|
version = "2026.2.17"
|
|
description = "MCP server for the Genpix SkyWalker-1 DVB-S USB receiver"
|
|
requires-python = ">=3.11"
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
dependencies = [
|
|
"fastmcp>=2.0",
|
|
"pyusb>=1.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
skywalker-mcp = "skywalker_mcp.server:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/skywalker_mcp"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
"ruff>=0.9",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 100
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|