modjam/pyproject.toml
Alec Perkins 7e1074647b
Some checks failed
tests / pytest (push) Failing after 9s
Dedicate to the public domain (CC0) with LLM-authorship notice
This repo was produced primarily by an LLM, so most of it is not
eligible for copyright protection to begin with. CC0 covers any
portion that turns out to be copyrightable.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 21:29:38 -04:00

29 lines
630 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modjam"
version = "0.1.0"
description = "LoRa modulation jam — packet delivery rate measurement across MeshCore radio settings"
requires-python = ">=3.11"
license = "CC0-1.0"
license-files = ["LICENSE"]
dependencies = [
"meshcore==2.3.7",
]
[project.optional-dependencies]
test = [
"pytest>=8",
]
[project.scripts]
modjam-station = "modjam.cli:station_main"
modjam-control = "modjam.cli:control_main"
[tool.setuptools.packages.find]
include = ["modjam*"]
[tool.pytest.ini_options]
testpaths = ["tests"]