Files
pytheory/pyproject.toml
T
Claude a27f8cc23b perf: vectorize IR HF-damping loop; re-version to 0.54.0
- Replace the per-sample high-frequency damping loop in _generate_ir() with
  a vectorized piecewise-constant filter (_time_varying_lowpass): ~15x
  faster IR generation for an inaudible (<0.1% RMS) difference. First render
  of the benchmark score drops 3.4s -> 2.7s; the docstring-scraping cost
  seen earlier was one-time import overhead and is gone from the steady
  state.
- Bump version 0.53.2 -> 0.54.0. This release grew well past a patch
  (ring_out, hall reverb, reverb_type validation, real stereo reverb, IR
  caching, the DSP test net), so it's a minor.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014ijpMiuST8kXnBoB5pSu8t
2026-06-17 00:56:02 +00:00

56 lines
1.4 KiB
TOML

[project]
name = "pytheory"
version = "0.54.0"
description = "Music Theory for Humans"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Kenneth Reitz", email = "me@kennethreitz.org" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"sounddevice",
"scipy",
"rich>=14.3.3",
]
[project.optional-dependencies]
live = ["python-rtmidi"]
link = ["LinkPython-extern"]
[project.urls]
Homepage = "https://github.com/kennethreitz/pytheory"
Documentation = "https://pytheory.org"
Repository = "https://github.com/kennethreitz/pytheory"
Issues = "https://github.com/kennethreitz/pytheory/issues"
[project.scripts]
pytheory = "pytheory.cli:main"
[dependency-groups]
dev = ["pytest", "LinkPython-extern"]
docs = ["sphinx", "myst-parser"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.setuptools]
packages = ["pytheory"]