2011-05-31 20:51:48 +00:00
|
|
|
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',
|
|
|
|
|
2012-11-15 00:27:01 +00:00
|
|
|
# to find the code associated with entry point
|
|
|
|
# A.B:foo first cd into directory A, open file B
|
|
|
|
# and find sub foo
|
2011-06-03 21:47:44 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2013-10-09 18:19:10 +00:00
|
|
|
'teuthology = scripts.run:main',
|
2013-09-30 21:31:44 +00:00
|
|
|
'teuthology-nuke = scripts.nuke:main',
|
2013-10-08 16:34:09 +00:00
|
|
|
'teuthology-suite = scripts.suite:main',
|
2013-10-08 16:54:41 +00:00
|
|
|
'teuthology-ls = scripts.ls:main',
|
2013-10-08 19:21:23 +00:00
|
|
|
'teuthology-worker = scripts.worker:main',
|
2013-10-08 19:58:31 +00:00
|
|
|
'teuthology-lock = scripts.lock:main',
|
2013-10-08 21:59:17 +00:00
|
|
|
'teuthology-schedule = scripts.schedule:main',
|
2013-10-08 22:02:47 +00:00
|
|
|
'teuthology-updatekeys = scripts.updatekeys:main',
|
2013-10-09 17:15:33 +00:00
|
|
|
'teuthology-coverage = scripts.coverage:main',
|
2013-10-09 15:03:38 +00:00
|
|
|
'teuthology-results = scripts.results:main',
|
2013-10-08 22:07:01 +00:00
|
|
|
'teuthology-report = scripts.report:main',
|
2013-10-16 19:31:26 +00:00
|
|
|
'teuthology-kill = scripts.kill:main',
|
2014-02-25 19:13:31 +00:00
|
|
|
'teuthology-queue = scripts.queue:main',
|
2011-06-03 21:47:44 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2011-05-31 20:51:48 +00:00
|
|
|
)
|