mirror of
https://github.com/kennethreitz/pytheory.git
synced 2026-06-05 23:00:20 +00:00
4a77f9163e
- User guide: quickstart, tones, scales, chords, fretboard, playback - API reference: autodoc for all modules - alabaster theme with Napoleon for Google/NumPy docstrings - Update project description in pyproject.toml - Add sphinx to docs dependency group Build with: uv run --group docs sphinx-build -b html docs docs/_build/html Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
316 B
TOML
21 lines
316 B
TOML
[project]
|
|
name = "pytheory"
|
|
version = "0.2.0"
|
|
description = "Music Theory for Humans"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"pytuning",
|
|
"numeral",
|
|
"sounddevice",
|
|
"scipy",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest"]
|
|
docs = ["sphinx"]
|
|
|
|
[tool.setuptools]
|
|
packages = ["pytheory"]
|