Files
pytheory/pyproject.toml
T
kennethreitz 9b8fa20d77 Audio import, modal piano, live engine overhaul, choir vowels — v0.45.0
- Score.from_wav(): monophonic WAV transcription via pure-numpy YIN
  (pitch tracking, note segmentation, velocities, quantization);
  pytheory transcribe CLI command
- piano_wave rebuilt as modal synthesis: inharmonic partials, strike-
  position comb, register-correct stringing, frequency-dependent damping
- Live engine: sustain loops for held notes, per-channel bus effects
  (instant CC, no wavetable re-render), streaming Schroeder reverb,
  detune/sub_osc/noise_mix support, pytheory live CLI command
- Choir vowel transitions: lyric="ah>oo" glides formants across the note
- Docs: voice-memo-to-sheet-music cookbook recipe, audio import guide,
  full-mix behavior notes

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-12 01:28:00 -04:00

54 lines
1.4 KiB
TOML

[project]
name = "pytheory"
version = "0.45.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"]
[project.urls]
Homepage = "https://github.com/kennethreitz/pytheory"
Documentation = "https://pytheory.kennethreitz.org"
Repository = "https://github.com/kennethreitz/pytheory"
Issues = "https://github.com/kennethreitz/pytheory/issues"
[project.scripts]
pytheory = "pytheory.cli:main"
[dependency-groups]
dev = ["pytest"]
docs = ["sphinx", "myst-parser"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
[tool.setuptools]
packages = ["pytheory"]