3c454c4167
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: Ie7265335480848753e0576052db8754c4c25a517
50 lines
1.0 KiB
INI
50 lines
1.0 KiB
INI
[metadata]
|
|
name = packstack
|
|
summary = A utility to install OpenStack
|
|
description_file = README.rst
|
|
long_description_content_type = text/x-rst
|
|
author = RDO
|
|
author_email = rdo-list@redhat.com
|
|
home_page = http://www.rdoproject.org/
|
|
python_requires = >=3.6
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
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.6
|
|
Programming Language :: Python :: 3.9
|
|
|
|
[files]
|
|
packages =
|
|
packstack
|
|
|
|
data_files =
|
|
share/packstack = docs/packstack.rst
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[egg_info]
|
|
tag_build =
|
|
tag_date = 0
|
|
tag_svn_revision = 0
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = docs/build
|
|
source-dir = docs
|
|
|
|
[pbr]
|
|
warnerrors = True
|
|
autodoc_tree_index_modules = True
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
packstack = packstack.installer.run_setup:main
|
|
|