From 04f69eb07df73abe4b89fde2c24084f7664f2104 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 15 Oct 2020 16:10:42 +0800 Subject: [PATCH] fix setup entry point --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 75d7b7b..5677f34 100755 --- a/setup.py +++ b/setup.py @@ -9,6 +9,6 @@ setup( license="LGPLv3+", packages=find_packages(), entry_points={ - "console_scripts": ["artiq_client = artiq.frontend.artiq_client:main"], + "console_scripts": ["artiq_netboot = artiq_netboot.artiq_netboot:main"], } )