aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/armdebug/nxt-python-fantom/setup.py
blob: 98993471c4b19239f40915a65fafdbf97c9010a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

from distutils.core import setup

try:
    readme = open('README', 'r')
    ldesc = readme.read(8192)
    readme.close()
except:
    ldesc = ""

setup(
    name='nxt-python',
    version='2.1.0',
    author='Marcus Wanner',
    author_email='marcusw@cox.net',
    description='LEGO Mindstorms NXT Control Package',
    url='http://code.google.com/p/nxt-python/',
    license='Gnu GPL v3',
    packages=['nxt', 'nxt.sensor'],
    scripts=['scripts/nxt_push', 'scripts/nxt_test', 'scripts/nxt_filer'],
    long_description=ldesc
)