From 42029e0a0615afb75ce59909ae04ef8b39cdcc4b Mon Sep 17 00:00:00 2001 From: Vincent VERDEIL Date: Wed, 14 Oct 2020 17:40:49 +0200 Subject: [PATCH] Correct entry_point in setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f58a481..fe71f78 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def main(): {'universal': True} }, zip_safe=True, # Don't install the lib as an .egg zipfile - entry_points={'pibooth': ["pibooth-qrcode = pibooth-qrcode"]}, + entry_points={'pibooth': ["pibooth_qrcode = pibooth_qrcode"]}, ) if __name__ == '__main__':