Files
pytheory/pyproject.toml
T
kennethreitz fb32ca531d feat: 16 more ragas (36 total) + reverb on raga playback
Adds Ahir Bhairav, Jogiya, Sohni, Puriya, Puriya Dhanashri, Shree,
Multani, Brindabani Sarang, Megh, Shivaranjani, Tilang, Jhinjhoti,
Rageshri, Kalavati, Deshkar, and Shankara — all with clean thaat
membership among the ten thaats.

Raga.play() now renders the whole aroha/avaroha into one buffer and mixes
a hall reverb over it, so each swara's tail bleeds into the next instead
of dry, separate notes. New Raga.render() returns that buffer (testable
without an audio device); reverb is tunable via the `reverb` arg and
`pytheory raga <name> --play --reverb 0.5`.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-16 00:18:14 -04:00

56 lines
1.4 KiB
TOML

[project]
name = "pytheory"
version = "0.53.1"
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"]