From 09aadf254ef8e77335da66cdd7b8f1b77e17453f Mon Sep 17 00:00:00 2001 From: Robin Krens Date: Thu, 15 Feb 2024 10:32:22 +0100 Subject: [PATCH] add requirements.txt --- requirements.txt | 12 ++++++++++++ setup.py | 10 +++------- 2 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a5b231f --- /dev/null +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 7ef5070..33cb854 100644 --- 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", ], -- 2.7.4