Metadata-Version: 2.4
Name: abjad
Version: 3.26
Summary: Abjad is a Python API for building LilyPond files.
Author-email: Trevor Bača <trevor.baca@gmail.com>, Joséphine Wolf Oberholtzer <josephine.wolf.oberholtzer@gmail.com>
License: MIT
Project-URL: Homepage, https://abjad.github.io
Keywords: lilypond,music composition,music notation
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Artistic Software
Requires-Python: >=3.12
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: ply>=3.11
Requires-Dist: roman>=5.0
Requires-Dist: uqbar>=0.7.4
Provides-Extra: dev
Requires-Dist: black==25.1.0; extra == "dev"
Requires-Dist: build==1.2.2.post1; extra == "dev"
Requires-Dist: flake8==7.2.0; extra == "dev"
Requires-Dist: isort==6.0.1; extra == "dev"
Requires-Dist: mypy==1.15.0; extra == "dev"
Requires-Dist: pytest==8.3.5; extra == "dev"
Requires-Dist: pytest-cov==6.1.1; extra == "dev"
Requires-Dist: pytest-helpers-namespace==2021.12.29; extra == "dev"
Requires-Dist: setuptools==80.0.0; extra == "dev"
Requires-Dist: sphinx==8.1.3; extra == "dev"
Requires-Dist: sphinx-rtd-theme==3.0.2; extra == "dev"
Requires-Dist: sphinx-toggleprompt==0.6.0; extra == "dev"
Requires-Dist: twine==6.1.0; extra == "dev"
Dynamic: license-file

Abjad 3.26
==========

Abjad helps composers build up complex pieces of music notation in iterative
and incremental ways. Use Abjad to create a symbolic representation of all the
notes, rests, chords, tuplets, beams and slurs in any score. Because Abjad
extends the Python programming language, you can use Abjad to make systematic
changes to music as you work. Because Abjad wraps the LilyPond music notation
package, you can use Abjad to control the typographic detail of symbols on the
page.

..  image:: https://img.shields.io/badge/python-3.12-blue.svg
    :target: https://www.python.org/downloads/release/python-312/
    :alt: Python 3.12

..  image:: https://img.shields.io/badge/python-3.13-blue.svg
    :target: https://www.python.org/downloads/release/python-313/
    :alt: Python 3.13

..  image:: https://img.shields.io/pypi/v/abjad.svg?style=flat-square
    :target: https://pypi.python.org/pypi/abjad

..  image:: https://img.shields.io/pypi/dm/abjad.svg?style=flat-square
    :target: https://pypi.python.org/pypi/abjad

..  image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/ambv/black

----

Abjad's documentation is available here: https://abjad.github.io

Abjad's install instructions are tested on macOS and Linux.

Abjad requires Python 3.12 (or later):

..  code-block::

    ~$ python --version
    Python 3.13.3

Abjad requires LilyPond 2.25.26 (or later).

Make sure LilyPond is installed:
http://lilypond.org/development.html

Make sure LilyPond is callable from the commandline:

..  code-block::

    $ lilypond --version
    GNU LilyPond 2.25.26 (running Guile 3.0)

    Copyright (c) 1996--2023 by
      Han-Wen Nienhuys <hanwen@xs4all.nl>
      Jan Nieuwenhuizen <janneke@gnu.org>
      and others.

    This program is free software.  It is covered by the GNU General Public
    License and you are welcome to change it and/or distribute copies of it
    under certain conditions.  Invoke as `lilypond --warranty' for more
    information.

Create a Python 3 virtual environment for Abjad:
https://docs.python.org/3/tutorial/venv.html

Activate the virtual environment and then use pip to install Abjad:

..  code-block::

    ~$ python -m pip install abjad

Start Python, import Abjad, start making music notation:

..  code-block::

    ~$ python
    >>> import abjad
    >>> note = abjad.Note("c'4")
    >>> abjad.show(note)

..
    ..  image:: hello.png

----

Join the Abjad community: https://abjad.github.io/appendices/community.html
