Rename python/ to src/ following PEP 517/518 modern packaging conventions. Also adds .gitignore for docs and build artifacts.
38 lines
973 B
TOML
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/**"]}
|