More or less done (tree instead of p2p)
[polysh.git] / setup.py
blob7c4e08dd444d239317076516dc6b51646059cedb
1 #!/usr/bin/env python
3 from distutils.core import setup
4 from polysh.version import VERSION
6 setup(name='polysh',
7 version=VERSION,
8 description='Polysh',
9 long_description=
10 """polysh 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/polysh',
15 scripts=['bin/polysh'],
16 data_files=[('share/man/man1', ['polysh.1'])],
17 packages=['polysh'],
18 license='GPL'