-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·14 lines (14 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
setup(name='sshlauncher',
version='2.1',
scripts=['sshlauncher'],
py_modules=['sshctrl'],
install_requires=['pexpect>3.0'],
description='SSHLauncher is allows an easy, scripted, parallel execution of applications on multiple hosts.',
author='Zdravko Bozakov, Michael Bredel',
author_email='[email protected]',
url='http://github.com/bozakov/sshlauncher',
license='GPLv2',
platforms='UNIX',
long_description='Simulation and emulation experiments are widely used for verifying new approaches as well as existing theories in communication networks. In this report, we present a tool for performing automated experiments in distributed testbeds such as Emulab or PlanetLab. Using an intuitive configuration file syntax, large sets of complex command sequences can be executed with minimal user interaction. As a result, repeated execution of experiments and the generation of controlled, documented, and reproducible results is greatly facilitated.',
)