Typo
[gsh.git] / setup.py
blob70cb1c20ac399c190fd944dcf278a20d9bddbabc
1 #!/usr/bin/env python
3 import sys
5 sys.path.append('setuptools-0.7a1dev_r53614-py2.4.egg')
6 from setuptools import setup, find_packages
7 from gsh.version import VERSION
9 setup(name='gsh',
10 version=VERSION,
11 description='Group Shell',
12 long_description=
13 '''gsh is used to launch several remote shells on many machines at the same
14 time and control them from a single command prompt.''',
15 author='Guillaume Chazarain',
16 author_email='guichaz@yahoo.fr',
17 url='http://guichaz.free.fr/gsh',
18 scripts=['bin/gsh'],
19 packages=find_packages(),
20 license='GPL'