-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (40 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="raflash",
version="0.0.2",
author="Robin Krens",
description=("Flash tool for ROM bootloader for Renesas RA MCUs"),
license="GNU",
keywords="Renesas RA flash bootloader",
packages=['raflash', 'tests'],
install_requires=[
'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',
'tomli>=2.0.1',
'tqdm>=4.66.2',
'pyserial>=3.5',
],
entry_points={
'console_scripts': [
'raflash = raflash.RAFlasher:main',
],
},
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',
],
)