mirror of
https://github.com/ceph/ceph
synced 2025-01-03 09:32:43 +00:00
af0d7c5e44
Signed-off-by: Greg Farnum <gregory.farnum@dreamhost.com>
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
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',
|
|
'httplib2',
|
|
'beanstalkc >=0.2.0',
|
|
],
|
|
|
|
entry_points={
|
|
'console_scripts': [
|
|
'teuthology = teuthology.run:main',
|
|
'teuthology-nuke = teuthology.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',
|
|
],
|
|
},
|
|
|
|
)
|