From: Robin Krens Date: Sun, 18 Feb 2024 23:11:48 +0000 (+0100) Subject: setup.py: update metadata X-Git-Tag: v0.0.2~1 X-Git-Url: https://robinkrens.nl/gitweb/?a=commitdiff_plain;h=c641561c33acafc44b6899c05c3461d0ff14ec81;p=renesas-ra-flasher setup.py: update metadata --- diff --git a/setup.py b/setup.py index 04a8264..50706fe 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read(fname): setup( name="raflash", - version="0.0.1", + version="0.0.2", author="Robin Krens", description=("Flash tool for ROM bootloader for Renesas RA MCUs"), license="GNU", @@ -25,6 +25,7 @@ setup( 'PyYAML>=6.0.1', 'tomli>=2.0.1', 'tqdm>=4.66.2', + 'pyserial>=3.5', ], entry_points={ 'console_scripts': [ @@ -33,7 +34,9 @@ setup( }, long_description_content_type='text/markdown', long_description=read('README.md'), + url="https://github.com/robinkrens/raflash", classifiers=[ 'Development Status :: 3 - Alpha', + 'Topic :: Software Development :: Embedded Systems', ], )