tobiko/setup.cfg
Slawek Kaplonski 21d5151e39 Add Tobiko CLI tool to execute tobiko tools
This patch adds base `tobiko` CLI tool and one command for it which is
`ping`.
Using this new CLI tool it is now possible to do `tobiko ping <server>`
to run tobiko function to ping some server and store results in the
file. This can be used e.g. to run background ping process in the POD on
OpenShift and use that in the Tobiko tests.

Related: #TOBIKO-100
Change-Id: I33aea73cead5a4f406ce1a08c819fe056e17e9a1
2024-11-19 16:46:03 +01:00

58 lines
1.2 KiB
INI

[metadata]
name = tobiko
summary = OpenStack Testing Upgrades Library
description_file =
README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = https://tobiko.readthedocs.io/
python_requires = >=3.8
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords =
setup
distutils
[files]
packages =
tobiko
[entry_points]
console_scripts =
tobiko = tobiko.cmd:main
tobiko-fixture = tobiko.cmd.fixture:main
tobiko-keystone-credentials = tobiko.openstack.keystone._credentials:print_credentials
tobiko.cli_commands =
ping = tobiko.cmd:TobikoPing
oslo.config.opts =
tobiko = tobiko.config:list_tobiko_options
[global]
setup-hooks =
pbr.hooks.setup_hook
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[wheel]
universal = 1
[tool:pytest]
render_collapsed = True