aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
blob: 3275843a105228e614437be79a97da55d2e6488a (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://git.ni.fr.eu.org/?p=pyfantom.git;a=summary',
    license='Gnu GPL v2',
    py_modules=['pyfantom'],
    long_description=ldesc
)