Skip to content

Commit

Permalink
setup.py: set correct long description
Browse files Browse the repository at this point in the history
  • Loading branch information
robinkrens committed Feb 15, 2024
1 parent 98d76fa commit 64b8781
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ def read(fname):
name="raflash",
version="0.0.1",
author="Robin Krens",
description=("Flasher for the built in ROM bootloader for Renesas RA microcontrollers"),
description=("Flash tool for ROM bootloader for Renesas RA MCUs"),
license="GNU",
keywords="Renesas RA chipset flasher",
keywords="Renesas RA flash bootloader",
packages=['raflash', 'tests'],
install_requires=[
'exceptiongroup>=1.2.0',
Expand All @@ -31,8 +31,9 @@ def read(fname):
'raflash = raflash.RAFlasher:main',
],
},
long_description_content_type='text/markdown',
long_description=read('README.md'),
classifiers=[
"Development Status :: 1",
'Development Status :: 3 - Alpha',
],
)

0 comments on commit 64b8781

Please sign in to comment.