30b9a0853c
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: I0c8e6a3a474a5cfa029b741b1a26b7d48d244206
53 lines
1.4 KiB
INI
53 lines
1.4 KiB
INI
[metadata]
|
|
name = designate-ext-samplehandler
|
|
summary = Sample Designate Handler Extension
|
|
description_file =
|
|
README.rst
|
|
author = Kiall Mac Innes
|
|
author_email = kiall@hp.com
|
|
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 :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 2.6
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[files]
|
|
packages = designate_ext_samplehandler
|
|
|
|
[entry_points]
|
|
designate.notification.handler =
|
|
sample = designate_ext_samplehandler.notification_handler.sample:SampleHandler
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|
|
|
|
[egg_info]
|
|
tag_build =
|
|
tag_date = 0
|
|
tag_svn_revision = 0
|
|
|
|
[compile_catalog]
|
|
directory = designate-ext-samplehandler/locale
|
|
domain = designate-ext-samplehandler
|
|
|
|
[update_catalog]
|
|
domain = designate-ext-samplehandler
|
|
output_dir = designate-ext-samplehandler/locale
|
|
input_file = designate-ext-samplehandler/locale/designate-ext-samplehandler.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = designate-ext-samplehandler/locale/designate-ext-samplehandler.pot
|