
Since setuptools v54.1.0[1], the parmeters with dash have been deprecated in favor of the new parameters with underscore. This change updates the parameters accordingly to avoid the warnings like the example below. 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: I8e74a56b2cdcd7afc0ca3d6e2fb10d7379122780
47 lines
1.5 KiB
INI
47 lines
1.5 KiB
INI
[metadata]
|
|
name = stackalytics
|
|
summary = OpenStack Contribution Dashboard
|
|
description_file = README.rst
|
|
description_content_type = text/x-rst
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
home_page = https://www.openstack.org/
|
|
python_requires = >=3.8
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
|
|
[files]
|
|
packages =
|
|
stackalytics
|
|
data_files =
|
|
share/stackalytics = stackalytics/dashboard/static/*
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build_dir = doc/build
|
|
source_dir = doc/source
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
stackalytics-dump = stackalytics.processor.dump:main
|
|
stackalytics-dashboard = stackalytics.dashboard.web:main
|
|
stackalytics-processor = stackalytics.processor.main:main
|
|
|
|
oslo.config.opts =
|
|
oslo_log = oslo_log._options:list_opts
|
|
stackalytics.dashboard.config = stackalytics.dashboard.config:list_opts
|
|
stackalytics.processor.config = stackalytics.processor.config:list_opts
|