mirror of
https://github.com/ceph/ceph
synced 2024-12-13 23:17:07 +00:00
7d4bb1202b
Currently hardcoded to run dbench, not modular, and the remote execution API is clumsy.
22 lines
421 B
Python
22 lines
421 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',
|
|
],
|
|
|
|
)
|