Files
ansible-role-collect-logs/setup.cfg
niuke 066263b8d0 setup.cfg: Replace dashes with underscores
Setuptools v54.1.0 introduces a warning that the use of dash-separated
options in 'setup.cfg' will not be supported in a future version [1].
Get ahead of the issue by replacing the dashes with underscores. Without
this, we see 'UserWarning' messages like the following on new enough
versions of setuptools:

  UserWarning: Usage of dash-separated 'description-file' will not be
  supported in future versions. Please use the underscore name
  'description_file' instead

[1] https://github.com/pypa/setuptools/commit/a2e9ae4cb

Change-Id: I54d4f816d8de765035aa1607740345c13f9b6cc9
2023-09-15 20:43:13 +00:00

46 lines
1.2 KiB
INI

[metadata]
name = ansible-role-collect-logs
summary = ansible-role-collect-logs - An Ansible role for aggregating logs from different nodes.
description_file =
README.rst
author = TripleO Team
author_email = openstack-discuss@lists.openstack.org
home_page = https://opendev.org/openstack/ansible-role-collect-logs
classifier =
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Information Technology
Topic :: Utilities
[global]
setup_hooks =
pbr.hooks.setup_hook
[files]
# Allows us to install the role using pip so Ansible can find it.
data_files =
share/ansible/roles/collect-logs = roles/collect_logs/*
share/ansible/roles/collect-logs/library = plugins/modules/*
share/ansible/roles/collect-logs/module_utils = plugins/module_utils/*
share/ansible/roles/collect-logs/docs = docs/*
[wheel]
universal = 1
[pbr]
skip_authors = True
skip_changelog = True
[flake8]
# black compatible settings
# https://black.readthedocs.io/en/stable/the_black_code_style.html
max_line_length = 88
extend_ignore = E203,E501,W503,BLK100
show_source = True
builtins = _
[isort]
profile=black