From c9f1a7cbb4f60203df272e4c851afa69f2bd09c2 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 14 Oct 2019 23:03:07 +0200 Subject: [PATCH] Added script description --- theremin/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/theremin/__init__.py b/theremin/__init__.py index c10bb3b..986ac07 100755 --- a/theremin/__init__.py +++ b/theremin/__init__.py @@ -8,7 +8,13 @@ from .theremin import theremin def parse_args(args): - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser( + description='Theremin emulator through a Leap Motion device.\n\n' + + 'Make sure that your Leap Motion device is plugged in and\n' + + 'the leapd daemon is running before running it.\n\n' + + 'Fabio "BlackLight" Manganiello \n', + formatter_class=argparse.RawTextHelpFormatter) + parser.add_argument('--list-audio-outputs', '-l', dest='list_audio_outputs', required=False, action='store_true', help='List the available audio output devices') parser.add_argument('--list-leap-motions', '-L', dest='list_leap_motions', required=False,