elastic-recheck/setup.cfg

68 lines
2.3 KiB
INI

[metadata]
name = elastic-recheck
summary = "Classify tempest-devstack failures using ElasticSearch"
description-file =
README.rst
author = OpenStack
author-email = openstack-discuss@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 :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
python_requires = >=3.6
[files]
packages =
elastic_recheck
data_files =
share/elastic-recheck = web/share/*
[entry_points]
console_scripts =
elastic-recheck = elastic_recheck.bot:main
elastic-recheck-graph = elastic_recheck.cmd.graph:main
elastic-recheck-success = elastic_recheck.cmd.check_success:main
elastic-recheck-uncategorized = elastic_recheck.cmd.uncategorized_fails:main
elastic-recheck-query = elastic_recheck.cmd.query:main
elastic-recheck-cleanup = elastic_recheck.cmd.cleanup:main
[upload_sphinx]
upload-dir = doc/build/html
[compile_catalog]
directory = elastic_recheck/locale
domain = elastic_recheck
[update_catalog]
domain = elastic-recheck
output_dir = elastic_recheck/locale
input_file = elastic_recheck/locale/elastic-recheck.pot
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = elastic_recheck/locale/elastic-recheck.pot
[flake8]
ignore =
# These are ignored intentionally in infra projects;
# please don't submit patches that solely correct them or enable them.
E124,E125,E129,E252,E402,E741,H,W503,W504
# TODO(ssbarnea): Remove temporary added ignores during flake8 upgrade:
E123 # E123 closing bracket does not match indentation of opening bracket's line
F632 # F632 use ==/!= to compare constant literals (str, bytes, int, float, tuple)
N802 # N802 function name {} should be lowercase
N806 # N806 variable '{}' in function should be lowercase
N813 # N813 camelcase '{}' imported as lowercase '{}'
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build