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