add requirements.txt
authorRobin Krens <robin@robinkrens.nl>
Thu, 15 Feb 2024 09:32:22 +0000 (10:32 +0100)
committerRobin Krens <robin@robinkrens.nl>
Thu, 15 Feb 2024 09:32:22 +0000 (10:32 +0100)
requirements.txt [new file with mode: 0644]
setup.py

diff --git a/requirements.txt b/requirements.txt
new file mode 100644 (file)
index 0000000..a5b231f
--- /dev/null
@@ -0,0 +1,12 @@
+exceptiongroup==1.2.0
+future==0.18.3
+iniconfig==2.0.0
+iso8601==2.1.0
+packaging==23.2
+pluggy==1.4.0
+pytest==8.0.0
+pyusb==1.2.1
+PyYAML==6.0.1
+renesas-ra-flasher==0.0.1
+tomli==2.0.1
+tqdm==4.66.2
index 7ef5070..33cb854 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,22 +2,18 @@
 import os
 from setuptools import setup
 
-# Utility function to read the README file.
-# Used for the long_description.  It's nice, because now 1) we have a top level
-# README file and 2) it's easier to type in the README file than to put a raw
-# string in below ...
 def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read()
 
 setup(
-    name = "ra-flasher",
+    name = "renesas-ra-flasher",
     version = "0.0.1",
     author = "Robin Krens",
-    description = ("An example of how to set up pytest"),
+    description = ("Flasher for the built in ROM bootloader for Renesas RA microcontrollers"),
     license = "GNU",
     keywords = "Renesas RA chipset flasher",
     packages=['src', 'tests'],
-    #long_description=read('README.md'),
+    long_description=read('README.md'),
     classifiers=[
         "Development Status :: 1",
     ],