gr-sarsat-modern/pyproject.toml
Ryan Malloy 66f20af368 refactor: convert to src-layout for Python packaging
Rename python/ to src/ following PEP 517/518 modern packaging
conventions. Also adds .gitignore for docs and build artifacts.
2026-02-17 18:45:27 -07:00

38 lines
973 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"},
{name = "Ryan Malloy", email = "ryan@supported.systems"},
]
keywords = ["gnuradio", "sdr", "sarsat", "cospas", "beacon", "search-rescue"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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 = ["src"]
[tool.setuptools]
# Exclude non-package directories from sdist
exclude-package-data = {"*" = ["docs-site/**", "docs/**"]}