Files
pytheory/pyproject.toml
T
kennethreitz 9900819e75 ABC export: emit lyrics as w: lines; release 0.57.7
A vocal line now emits a standard ABC w: lyric line under each line of
music — one syllable per sounding note, rests skipped, tie tails held
with _, lyric-less notes blanked with *, barlines aligned. Closes the
last notation-export gap: lyrics now reach LilyPond, MusicXML, and ABC.
Lyric-free ABC output is unchanged. _notes_to_abc now builds music and
lyric tokens line-by-line; new _abc_syllable() escapes w: specials.

New tests: abc lyrics, abc-no-lyrics-unchanged.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-22 08:55:32 -04:00

57 lines
1.5 KiB
TOML

[project]
name = "pytheory"
version = "0.57.7"
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"]
diagrams = ["cairosvg"] # PNG rasterization of SVG fretboard diagrams
[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"]