RAFlasher.py: add verify functionality
[renesas-ra-flasher] / setup.py
1 #!/usr/bin/env python3
2 import os
3 from setuptools import setup
4
5 # Utility function to read the README file.
6 # Used for the long_description.  It's nice, because now 1) we have a top level
7 # README file and 2) it's easier to type in the README file than to put a raw
8 # string in below ...
9 def read(fname):
10     return open(os.path.join(os.path.dirname(__file__), fname)).read()
11
12 setup(
13     name = "ra-flasher",
14     version = "0.0.1",
15     author = "Robin Krens",
16     description = ("An example of how to set up pytest"),
17     license = "GNU",
18     keywords = "Renesas RA chipset flasher",
19     packages=['src', 'tests'],
20     #long_description=read('README.md'),
21     classifiers=[
22         "Development Status :: 1",
23     ],
24 )