Fix gsh --ssh-exec
[gsh.git] / setup.py
blob0b6ff196240a4d2a09611720242a87aa5e433553
1 #!/usr/bin/env python
3 import os
4 from setuptools import setup, find_packages
6 news_file = file('NEWS')
7 version = news_file.readline().strip()
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'