From 1fb8588752aa7427db27a38acfcc27e18991f21f Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:58:44 +0800 Subject: [PATCH] Add more alias to wtsexporter command --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5294eb3..e248ba7 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,9 @@ setuptools.setup( }, entry_points={ "console_scripts": [ - "wtsexporter = Whatsapp_Chat_Exporter.__main__:main" + "wtsexporter = Whatsapp_Chat_Exporter.__main__:main", + "waexporter = Whatsapp_Chat_Exporter.__main__:main", + "whatsapp-chat-exporter = Whatsapp_Chat_Exporter.__main__:main" ] } )