ceph/setup.py
2011-06-29 12:55:25 -07:00

33 lines
757 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-nuke = teuthology.run:nuke',
'teuthology-suite = teuthology.suite:main',
'teuthology-ls = teuthology.suite:ls',
],
},
)