tripleo-quickstart-extras/setup.cfg
maliangyi 8de2c51407 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: Ief3bbde25244433c7a1df64cbe735d333d8d7662

Change-Id: Ied6589162ecd063ba8c82831c214b03ba8a6f184
2022-06-05 10:37:18 +08:00

44 lines
1.3 KiB
INI

[metadata]
name = tripleo-quickstart-extras
summary = "Extend tripleo-quickstart's abilities to deploy and test TripleO"
description_file =
README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home_page = http://docs.openstack.org/developer/tripleo-quickstart/
classifier =
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Information Technology
Topic :: Utilities
[files]
data_files =
config/environments = config/environments/*
config/general_config = config/general_config/*
playbooks = playbooks/*
vars = vars/*
usr/local/share/ansible/roles = roles/*
[pbr]
skip_authors = True
skip_changelog = True
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
# E402 module level import not at top of file
# E501 line too long
# F403 'from ansible.module_utils.basic import *' used; unable to detect undefined names
# H303 No wildcard (*) import
# H301 one import per line
# F405 ... may be undefined, or defined from star imports:
show-source = True
ignore = E123,E125,E501,F403,H303,F405
builtins = _
[tool:pytest]
# these break pytest collection due to missing imports
norecursedirs = .tox .eggs roles/validate-tempest/files