From 9d5a1478ebb6693d266a54fa8c53c92160e4dfb2 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Wed, 8 Nov 2023 08:53:23 +0100 Subject: [PATCH] renamed pymusco.py app as apps/pymusco to avoid confusion between the module pymusco and the application pymusco --- README.md | 4 ++-- src/{pymusco.py => apps/pymusco} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{pymusco.py => apps/pymusco} (100%) diff --git a/README.md b/README.md index 032b320..6104c81 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Digitizing original sheet music can be illegal depending on countries and editor The following command builds the [stub-pdf](#stub-pdf) `$PYMUSCO_WORKSPACE_ROOT/stubs/007-captain-future-galaxy-drift-1.pdf` from the [scan-pdf](#scan-pdf) `$PYMUSCO_WORKSPACE_ROOT/scans/007-captain-future-galaxy-drift-1.pdf` and the [piece description file](#piece-description-file) `$PYMUSCO_WORKSPACE_ROOT/scans/007-captain-future-galaxy-drift-1.desc`: ```bash -PYTHONPATH=./src ./src/pymusco.py \ +PYTHONPATH=./src ./src/apps/pymusco \ --orchestra-file-path samples/jazz.orchestra \ build-stub \ --scan-file-path samples/scans/007-captain-future-galaxy-drift-1.pdf \ @@ -48,7 +48,7 @@ PYTHONPATH=./src ./src/pymusco.py \ The following command builds the [print-pdf](#print-pdf) `$PYMUSCO_WORKSPACE_ROOT/prints/007-captain-future-galaxy-drift-1.pdf` from the [stub-pdf](#stub-pdf) `$PYMUSCO_WORKSPACE_ROOT/stubs/007-captain-future-galaxy-drift-1.pdf` and the [headcount file](#ts-auto) `$PYMUSCO_WORKSPACE_ROOT/samples/jazz.headcount`: ```bash -PYTHONPATH=./src ./src/pymusco.py \ +PYTHONPATH=./src ./src/apps/pymusco \ --orchestra-file-path samples/jazz.orchestra \ build-print \ --stub-file-path samples/stubs/007-captain-future-galaxy-drift-1.pdf \ diff --git a/src/pymusco.py b/src/apps/pymusco similarity index 100% rename from src/pymusco.py rename to src/apps/pymusco