From: Robin Krens Date: Thu, 15 Feb 2024 10:05:45 +0000 (+0100) Subject: setup.py: change name and add entry point X-Git-Tag: v0.0.1~11 X-Git-Url: https://robinkrens.nl/gitweb/?a=commitdiff_plain;h=ba35688e1eaf338984b79b0280424e766c09b199;p=renesas-ra-flasher setup.py: change name and add entry point --- diff --git a/setup.py b/setup.py index 33cb854..7a4e306 100644 --- a/setup.py +++ b/setup.py @@ -6,13 +6,18 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( - name = "renesas-ra-flasher", + name = "raflash", version = "0.0.1", author = "Robin Krens", description = ("Flasher for the built in ROM bootloader for Renesas RA microcontrollers"), license = "GNU", keywords = "Renesas RA chipset flasher", packages=['src', 'tests'], + entry_points={ + 'console_scripts': [ + 'raflash = src.RAFlasher:main', + ], + }, long_description=read('README.md'), classifiers=[ "Development Status :: 1",