ceph/setup.py
Zack Cerza 7ce4dfd97a Move teuthology-nuke's arg parsing to scripts/
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
2013-10-10 19:09:34 -05:00

34 lines
1.1 KiB
Python

from setuptools import setup, find_packages
setup(
name='teuthology',
version='0.0.1',
packages=find_packages(),
author='Tommi Virtanen',
author_email='tommi.virtanen@dreamhost.com',
description='Ceph test runner',
license='MIT',
keywords='ceph testing ssh cluster',
# to find the code associated with entry point
# A.B:foo first cd into directory A, open file B
# and find sub foo
entry_points={
'console_scripts': [
'teuthology = teuthology.run:main',
'teuthology-nuke = scripts.nuke:main',
'teuthology-suite = teuthology.suite:main',
'teuthology-ls = teuthology.suite:ls',
'teuthology-worker = teuthology.queue:worker',
'teuthology-lock = teuthology.lock:main',
'teuthology-schedule = teuthology.run:schedule',
'teuthology-updatekeys = teuthology.lock:update_hostkeys',
'teuthology-coverage = teuthology.coverage:analyze',
'teuthology-results = teuthology.suite:results',
'teuthology-report = teuthology.report:main',
],
},
)