From 1ab65ddb7f735c98a23842125d8bf15cfcef0949 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 14 Oct 2019 23:10:05 +0200 Subject: [PATCH] Added epilog and prog name --- theremin/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/theremin/__init__.py b/theremin/__init__.py index 986ac07..45759cb 100755 --- a/theremin/__init__.py +++ b/theremin/__init__.py @@ -9,10 +9,11 @@ from .theremin import theremin def parse_args(args): parser = argparse.ArgumentParser( + prog='theremin', 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', + 'the leapd daemon is running before running it.\n', + epilog='\n------------\nAuthor: Fabio "BlackLight" Manganiello \n', formatter_class=argparse.RawTextHelpFormatter) parser.add_argument('--list-audio-outputs', '-l', dest='list_audio_outputs', required=False,