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", + ], + } + )