From 5103c1c46dadb15af0327c8069d4c321f4f93d4f Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Wed, 1 Feb 2017 18:35:15 +0100 Subject: [feature] add install/uninstall command for helpers --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index da61958f..c4ddb4dc 100644 --- a/setup.py +++ b/setup.py @@ -62,6 +62,7 @@ DOWNLOAD_URL = DOWNLOAD_BASE % VERSION # Entry points gui_launcher = 'bitmask=leap.bitmask.gui.app:start_app' bitmask_cli = 'bitmaskctl=leap.bitmask.cli.bitmask_cli:main' +bitmask_helpers = 'bitmask_helpers=leap.bitmask.vpn.helpers:main' bitmaskd = 'bitmaskd=leap.bitmask.core.launcher:run_bitmaskd' @@ -87,7 +88,10 @@ setup( include_package_data=True, zip_safe=False, entry_points={ - 'console_scripts': [gui_launcher, bitmask_cli, bitmaskd] + 'console_scripts': [ + gui_launcher, bitmask_cli, + bitmaskd, + bitmask_helpers] }, install_requires=required, extras_require=extras, -- cgit v1.2.3