Avoid a cyclic dependency
[gsh.git] / setup.py
blobf6139f821a8ece95caf6233635aa3fb65035d1ba
1 #!/usr/bin/env python
3 import os
4 from setuptools import setup, find_packages
6 setup(name='gsh',
7 version='0.1',
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@yahoo.fr',
14 url='http://guichaz.free.fr/gsh',
15 scripts=['bin/gsh'],
16 packages=find_packages(),
17 license='GPL'