ceph/setup.py
Sage Weil b95e61ae29 teuthology-nuke
Take in a full config (or just targets: portion) and do a destructive
cleanup.

Still need to clean up kernel mounts.
2011-06-29 12:23:44 -07:00

32 lines
706 B
Python

#!/usr/bin/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',
install_requires=[
'orchestra',
'configobj',
'PyYAML',
'bunch >=1.0.0',
'argparse >=1.2.1',
],
entry_points={
'console_scripts': [
'teuthology = teuthology.run:main',
'teuthology-suite = teuthology.suite:main',
'teuthology-nuke = teuthology.run:nuke',
],
},
)