Skip to content

Commit

Permalink
Merge pull request #76 from Abjad/trevor/abjad-3-21
Browse files Browse the repository at this point in the history
Bump Abjad from 3.20 to 3.21
  • Loading branch information
trevorbaca authored Feb 1, 2025
2 parents f978de9 + 1973211 commit 93bf469
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 21 deletions.
2 changes: 1 addition & 1 deletion abjadext/nauert/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (3, 20)
__version_info__ = (3, 21)
__version__ = ".".join(str(x) for x in __version_info__[:3]) + "".join(
__version_info__[3:] or []
)
25 changes: 5 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,23 @@ def read_version():
return local_dict["__version__"]


author = ["Joséphine Wolf Oberholtzer", "Tsz Kiu Pang"]

author_email = [
"josephine.wolf.oberholtzer@gmail.com",
"osamupang@gmail.com",
]

description = "Nauert extends Abjad with tools for rhythmic quantization."

if __name__ == "__main__":
setuptools.setup(
author=", ".join(author),
author_email=", ".join(author_email),
author="Joséphine Wolf Oberholtzer, Tsz Kiu Pang",
author_email="josephine.wolf.oberholtzer@gmail.com, osamupang@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Artistic Software",
],
description=description,
description="Nauert extends Abjad with tools for rhythmic quantization.",
include_package_data=True,
install_requires=["abjad>=3.20"],
install_requires=["abjad>=3.21"],
license="MIT",
long_description=pathlib.Path("README.md").read_text(),
keywords=", ".join(
[
"music composition",
"music notation",
"lilypond",
]
),
keywords="lilypond, music composition, music notation",
name=f"abjad-ext-{name}",
packages=["abjadext"],
platforms="Any",
Expand Down

0 comments on commit 93bf469

Please sign in to comment.