2011-05-31 20:51:48 +00:00
|
|
|
#!/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',
|
2011-06-02 22:04:01 +00:00
|
|
|
'bunch >=1.0.0',
|
2011-06-07 19:58:48 +00:00
|
|
|
'argparse >=1.2.1',
|
2011-07-08 00:06:18 +00:00
|
|
|
'httplib2',
|
2011-07-08 18:37:20 +00:00
|
|
|
'beanstalkc >=0.2.0',
|
2011-05-31 20:51:48 +00:00
|
|
|
],
|
|
|
|
|
2011-06-03 21:47:44 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'teuthology = teuthology.run:main',
|
2011-06-29 19:23:44 +00:00
|
|
|
'teuthology-nuke = teuthology.run:nuke',
|
2011-06-29 19:54:53 +00:00
|
|
|
'teuthology-suite = teuthology.suite:main',
|
|
|
|
'teuthology-ls = teuthology.suite:ls',
|
2011-07-08 18:37:20 +00:00
|
|
|
'teuthology-worker = teuthology.queue:worker',
|
2011-07-02 01:18:03 +00:00
|
|
|
'teuthology-lock = teuthology.lock:main',
|
2011-07-08 18:37:20 +00:00
|
|
|
'teuthology-schedule = teuthology.run:schedule',
|
2011-06-03 21:47:44 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2011-05-31 20:51:48 +00:00
|
|
|
)
|