Only keep the basename in the transferred paths
[polysh.git] / setup.py
blob34a2dd838b737939d6d6062c18466889d7674083
1 #!/usr/bin/env python
3 from distutils.core import setup
4 from gsh.version import VERSION
6 setup(name='gsh',
7 version=VERSION,
8 description='Group Shell',
9 long_description=
10 """gsh is used to launch several remote shells on many machines at the same
11 time and control them from a single command prompt.""",
12 author='Guillaume Chazarain',
13 author_email='guichaz@gmail.com',
14 url='http://guichaz.free.fr/gsh',
15 scripts=['bin/gsh'],
16 data_files=[('share/man/man1', ['gsh.1'])],
17 packages=['gsh'],
18 license='GPL'