ceph/setup.py
Tommi Virtanen ce10d4f5e0 Add missing trailing commas.
Lists of strings where last item has no comma are just
traps waiting to hurt you when you add a new item at
the end.
2011-06-07 12:58:48 -07:00

30 lines
597 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',
],
},
)