From 5f7faae166c81ff82daa1e9ef33fb6bba5626e66 Mon Sep 17 00:00:00 2001 From: Josip Delic Date: Mon, 26 Feb 2018 22:11:34 +0100 Subject: [PATCH] Add entry_points to setup.py --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7fb1172..47c88f8 100644 --- a/setup.py +++ b/setup.py @@ -57,5 +57,12 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Topic :: Software Development :: Testing' - ] + ], + entry_points={ + "console_scripts": [ + "adb = adb.adb_debug:main", + "fastboot = adb.fastboot_debug:main", + ], + } + )