gclib  2.0.8
Communications API for Galil controllers and PLCs
setup.py
Go to the documentation of this file.
1 '''! \file setup.py
2 '''
3 #Setup script for gclib python wrapper
4 # run 'python setup.py install' at console
5 from distutils.core import setup
6 setup(name='gclib',
7 version='1.0',
8 description='Python wrapper for Galil gclib',
9 author='Galil Motion Control',
10 author_email='softwaresupport@galil.com',
11 url='http://www.galil.com',
12 py_modules=['gclib'],
13 )
Definition: setup.py:1