[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "dtmf-table"
description = "A zero-heap, no_std, const-first DTMF keypad frequency table with runtime tolerance helpers."
readme = "README.md"
license = {text = "MIT"}
keywords = ["dtmf", "telephony", "audio", "no_std", "const"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony",
]
authors = [
{name = "Jack Geraghty", email = "jgeraghty049@gmail.com"}
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/jmg049/dtmf_table"
repository = "https://github.com/jmg049/dtmf_table"
documentation = "https://jmg049.github.io/dtmf_table/"
"Rust Documentation" = "https://docs.rs/dtmf_table"
[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "dtmf_table"
[tool.pytest.ini_options]
testpaths = ["python/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[project.optional-dependencies]
test = ["pytest>=6.0"]
dev = ["pytest>=6.0", "maturin>=1.0,<2.0"]