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-05-31 20:51:48 +00:00
|
|
|
],
|
|
|
|
|
2011-06-03 21:47:44 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'teuthology = teuthology.run:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2011-05-31 20:51:48 +00:00
|
|
|
)
|