~cdwilson/python-msp430-tools/fix-bug-936695

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
# This is a setup script for pythons distutils. It will install the
# python-msp430-tools extension when run as: python setup.py install

# Author: Chris Liechti <cliechti@gmx.net>
#
# This is open source software under the BSD license. See LICENSE.txt for more
# details.


from distutils.core import setup
import sys
import glob

setup(
    name="python-msp430-tools",
    description="Python MSP430 Tools",
    version="0.6",
    author="Chris Liechti",
    author_email="cliechti@gmx.net",
    url="http://launchpad.net/python-msp430-tools/",
    packages=['msp430'],
    package_dir={'msp430': 'msp430'},
    package_data={'msp430': [
            'msp430/asm/definitions/msp430-mcu-list.txt',
            'msp430/bsl/BL_150S_14x.txt',
            'msp430/bsl/BL_150S_44x.txt',
            'msp430/bsl/BS_150S_14x.txt',
            'msp430/bsl/patch.txt',
            'msp430/bsl5/RAM_BSL.00.05.04.34.txt',
            ]},
    license="Simplified BSD License",
    long_description=open('README.txt').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',
    ],
)