Adding `entry_points` to `setup.py` to get console scripts ```diff diff --git a/setup.py b/setup.py index 7fb1172..ec02932 100644 --- a/setup.py +++ b/setup.py @@ -57,5 +57,12 @@ Android project's ADB. '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", + ], + } + ) ```
Adding
entry_pointstosetup.pyto get console scripts