Ported from zleffke/gr-sarsat (2018, GNU Radio 3.7): - Updated Python 2 → Python 3 - Converted XML block definitions to YAML - Added pyproject.toml for modern packaging - Preserved original MIT license Blocks: - biphase_l_decode_bb: Manchester decoder (decim_block) - pds_frame_sync: Frame synchronizer with PDU output - sarp_msg_extract: SARP message splitter/validator
35 lines
911 B
TOML
35 lines
911 B
TOML
[project]
|
|
name = "gr-sarsat"
|
|
version = "1.0.0"
|
|
description = "Cospas-Sarsat 406 MHz beacon decoder for GNU Radio 3.10+"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "zleffke", email = ""},
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"},
|
|
]
|
|
keywords = ["gnuradio", "sdr", "sarsat", "cospas", "beacon", "search-rescue"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Communications :: Ham Radio",
|
|
]
|
|
|
|
dependencies = [
|
|
"numpy",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/zleffke/gr-sarsat"
|
|
"Repository" = "https://git.supported.systems/MCP/gr-sarsat-modern"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["python"]
|