forked from hbock/pyatk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 835 Bytes
/
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
from setuptools import setup
setup(
name='pyatk',
version='0.1.0',
description='Python implementation of the Freescale bootloader protocol for i.MX processors.',
author='Harry Bock',
author_email='[email protected]',
packages=[
'pyatk',
'pyatk.channel',
'pyatk.tests',
],
test_suite='pyatk.tests',
scripts=['bin/mx-toolkit.py'],
install_requires=[
'pyserial >= 2.6',
'pyusb >= 1.0.0b1',
],
license='BSD',
url='https://github.com/hbock/pyatk',
long_description="""
``pyATK`` (Python ATK) is an attempt at replacing the Advanced Toolkit
(ATK) program distributed by Freescale Semiconductor for their i.MX
series processors.
``pyATK`` contains both a Python library and a command-line tool for flashing
common i.MX processors.
""",
)