Files
Vicky Tam e6eb002311 feat: add MuseScore 4 CLI wrapper for music notation
First music notation tool in the CLI-Anything ecosystem. Wraps MuseScore 4's
mscore backend following the HARNESS.md 7-phase methodology.

Supports: transpose (by key/interval/diatonic), export (PDF/PNG/SVG/MP3/FLAC/
WAV/MIDI/MusicXML/Braille), part extraction, instrument management, score
analysis (probe/diff/stats), and interactive REPL with undo/redo.

56 tests (39 unit + 17 E2E) — all passing on macOS with MuseScore 4.6.5.
2026-03-22 02:34:44 +09:00

54 lines
1.6 KiB
Python

#!/usr/bin/env python3
"""setup.py for cli-anything-musescore
Install with: pip install -e .
"""
from setuptools import setup, find_namespace_packages
with open("cli_anything/musescore/README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="cli-anything-musescore",
version="1.0.0",
author="cli-anything contributors",
author_email="",
description="CLI harness for MuseScore 4 — transpose, export PDF/audio/MIDI, extract parts, manage instruments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HKUDS/CLI-Anything",
packages=find_namespace_packages(include=["cli_anything.*"]),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.10",
install_requires=[
"click>=8.0.0",
"prompt-toolkit>=3.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
],
},
entry_points={
"console_scripts": [
"cli-anything-musescore=cli_anything.musescore.musescore_cli:main",
],
},
package_data={
"cli_anything.musescore": ["skills/*.md"],
},
include_package_data=True,
zip_safe=False,
)