aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
blob: 9b7cb5dac43263969bd64623350200efd4d369ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python

from distutils.core import setup

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

setup(
    name='pyfantom',
    version='0.1',
    author='Nicolas Schodet',
    author_email='nico at ni.fr.eu.org',
    description='Python Wrapper for LEGO Mindstorms NXT Fantom Driver',
    url='http://pyfantom.ni.fr.eu.org/',
    license='Gnu GPL v2 or MPL v2.0',
    py_modules=['pyfantom'],
    long_description=ldesc
)