forked from zsquareplusc/python-msp430-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (64 loc) · 2.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of https://github.com/zsquareplusc/python-msp430-tools
# (C) 2017 Chris Liechti <[email protected]>
#
# SPDX-License-Identifier: BSD-3-Clause
#
# This is a setup script for pythons distutils. It will install the
# python-msp430-tools extension when run as: python setup.py install
from setuptools import setup, find_packages
import sys
import glob
setup(
name="python-msp430-tools",
description="Python MSP430 Tools",
version="0.9.2",
author="Chris Liechti",
author_email="[email protected]",
url="https://github.com/zsquareplusc/python-msp430-tools",
packages=find_packages(),
package_dir={'msp430': 'msp430'},
package_data={'msp430': [
'asm/definitions/msp430-mcu-list.txt',
'bsl/BL_150S_14x.txt',
'bsl/BL_150S_44x.txt',
'bsl/BS_150S_14x.txt',
'bsl/patch.txt',
'bsl5/RAM_BSL.00.06.05.34.txt',
]},
entry_points={
'console_scripts': [
'msp430-bsl = msp430.bsl.target:main',
'msp430-bsl-fcdprog = msp430.bsl.target.fcdprog:main',
'msp430-bsl-legacy = msp430.legacy.bsl_main:main',
'msp430-bsl-telosb = msp430.bsl.target.telosb:main',
'msp430-compare = msp430.memory.compare:main',
'msp430-convert = msp430.memory.convert:main',
'msp430-downloader = msp430.downloader:main',
#~ 'msp430-gdb = msp430.gdb.target:main',
'msp430-generate = msp430.memory.generate:main',
'msp430-hexdump = msp430.memory.hexdump:main',
'msp430-jtag = msp430.jtag.target:main',
'msp430-jtag-legacy = msp430.legacy.jtag:main',
'msp430-ram-usage = msp430.ram_usage:main',
'msp430-tool = msp430.tool:main',
],
},
license="Simplified BSD License",
long_description=open('README.rst').read(),
classifiers = [
# 'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Assemblers',
'Topic :: Software Development :: Libraries',
],
)