masakari-monitors/setup.cfg
Dinesh Bhor 5f59145276 Use os-testr and add PY35 support
masakari-monitors should use os-testr instead of testr as
it is more powerful and provide much prettier output than testr.

This patch also disables the use of PY34 and adds PY35 for in tox
as the gating on python 3.4 is restricted to <= Mitaka in OpenStack.
This is due to the change from Ubuntu Trusty to Xenial, where only
python3.5 is available. Python 3 don't have 'file' builtin method so
to make it compatible with Python 2 and 3 used 'open' builtin method.
Also fixed the failing test cases due to that.

Change-Id: Ib84b0b28a845e49eaef969d0fc995b1adbb7b29d
2017-07-26 16:19:24 +05:30

73 lines
2.1 KiB
INI

[metadata]
name = masakari-monitors
summary = Monitors for Masakari
description-file =
README.rst
author = OpenStack
author-email = openstack-dev@lists.openstack.org
home-page = http://www.openstack.org/
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
[files]
packages =
masakarimonitors
scripts =
masakarimonitors/cmd/masakari-hostmonitor.sh
masakarimonitors/cmd/masakari-processmonitor.sh
[entry_points]
oslo.config.opts =
masakarimonitors.conf = masakarimonitors.conf.opts:list_opts
oslo.config.opts.defaults =
masakarimonitors.instancemonitor = masakarimonitors.common.config:set_middleware_defaults
masakarimonitors.processmonitor = masakarimonitors.common.config:set_middleware_defaults
masakarimonitors.hostmonitor = masakarimonitors.common.config:set_middleware_defaults
console_scripts =
masakari-instancemonitor = masakarimonitors.cmd.instancemonitor:main
masakari-processmonitor = masakarimonitors.cmd.processmonitor:main
masakari-hostmonitor = masakarimonitors.cmd.hostmonitor:main
hostmonitor.driver =
simple = masakarimonitors.hostmonitor.host_handler.handle_host:HandleHost
default = masakarimonitors.hostmonitor.host_handler.handle_host:HandleHost
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
[upload_sphinx]
upload-dir = doc/build/html
[compile_catalog]
directory = masakarimonitors/locale
domain = masakarimonitors
[update_catalog]
domain = masakarimonitors
output_dir = masakarimonitors/locale
input_file = masakarimonitors/locale/masakarimonitors.pot
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = masakarimonitors/locale/masakarimonitors.pot
[build_releasenotes]
all_files = 1
build-dir = releasenotes/build
source-dir = releasenotes/source