[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "spectrograms"
version = "0.2.0"
description = "Fast spectrogram computation library powered by Rust"
readme = "python/README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Jack Geraghty (jmg049)", email = "jgeraghty049@gmail.com" },
]
keywords = ["spectrogram", "audio", "fft", "image", "signal-processing"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Image :: Analysis",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
]
dependencies = ["numpy==2.0"]
[project.urls]
Homepage = "https://github.com/jmg049/Spectrograms"
Repository = "https://github.com/jmg049/Spectrograms"
Issues = "https://github.com/jmg049/Spectrograms/issues"
[tool.maturin]
features = ["python", "realfft", "serde"]
module-name = "spectrograms._spectrograms"
python-source = "python"
include = ["**/*.pyi", "**/py.typed"]
exclude = ["manual", "**/examples/*"]
[dependency-groups]
dev = [
"ipykernel>=6.31.0",
"ipywidgets>=8.1.8",
"matplotlib>=3.9.4",
"pandas>=2.3.3",
"scikit-learn>=1.6.1",
"seaborn>=0.13.2",
"myst-parser>=3.0.1",
"sphinx>=4.0",
"sphinx-copybutton>=0.5.2",
"sphinx-rtd-theme>=3.1.0",
]