mirror of
https://github.com/ceph/ceph
synced 2024-12-14 07:25:50 +00:00
ce10d4f5e0
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.
30 lines
597 B
Python
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',
|
|
],
|
|
},
|
|
|
|
)
|