Handle an empty list
[gsh.git] / setup.py
blob4bff7fe86c4d56f1f2d3b849c93dfae037536181
1 #!/usr/bin/env python
3 import os
4 import sys
6 sys.path.append('setuptools-0.6c3-py2.4.egg')
7 from setuptools import setup, find_packages
9 news_file = file('NEWS')
10 version = news_file.readline().strip()
12 setup(name='gsh',
13 version=version,
14 description='Group Shell',
15 long_description=
16 '''gsh is used to launch several remote shells on many machines at the same
17 time and control them from a single command prompt.''',
18 author='Guillaume Chazarain',
19 author_email='guichaz@yahoo.fr',
20 url='http://guichaz.free.fr/gsh',
21 scripts=['bin/gsh'],
22 packages=find_packages(),
23 license='GPL'