setup.cfg: Cleanup

- pbr hasn't need the hook configuration since forever [1]
- We don't distribute eggs, so there's no need to include configuration
  for same
- nova-based entrypoints are grouped
- The 'wheel' group is renamed to 'bdist_wheel' [2]

[1] c84876dc0f
[2] f7c9878712

Change-Id: I1bc60eab58055bd6217ddb7c7c5c2e3bd6fb539e
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
Stephen Finucane
2019-08-22 12:08:11 +01:00
parent d93c9db3e2
commit f223ae5828

View File

@@ -19,9 +19,9 @@ classifier =
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
[global] [extras]
setup-hooks = osprofiler =
pbr.hooks.setup_hook osprofiler>=1.4.0 # Apache-2.0
[files] [files]
data_files = data_files =
@@ -52,6 +52,14 @@ oslo.policy.policies =
nova.compute.monitors.cpu = nova.compute.monitors.cpu =
virt_driver = nova.compute.monitors.cpu.virt_driver:Monitor virt_driver = nova.compute.monitors.cpu.virt_driver:Monitor
nova.ipv6_backend =
rfc2462 = nova.ipv6.rfc2462
account_identifier = nova.ipv6.account_identifier
nova.scheduler.driver =
filter_scheduler = nova.scheduler.filter_scheduler:FilterScheduler
fake_scheduler = nova.tests.unit.scheduler.fakes:FakeScheduler
console_scripts = console_scripts =
nova-api = nova.cmd.api:main nova-api = nova.cmd.api:main
nova-api-metadata = nova.cmd.api_metadata:main nova-api-metadata = nova.cmd.api_metadata:main
@@ -71,23 +79,11 @@ console_scripts =
nova-spicehtml5proxy = nova.cmd.spicehtml5proxy:main nova-spicehtml5proxy = nova.cmd.spicehtml5proxy:main
nova-status = nova.cmd.status:main nova-status = nova.cmd.status:main
nova-xvpvncproxy = nova.cmd.xvpvncproxy:main nova-xvpvncproxy = nova.cmd.xvpvncproxy:main
wsgi_scripts = wsgi_scripts =
nova-api-wsgi = nova.api.openstack.compute.wsgi:init_application nova-api-wsgi = nova.api.openstack.compute.wsgi:init_application
nova-metadata-wsgi = nova.api.metadata.wsgi:init_application nova-metadata-wsgi = nova.api.metadata.wsgi:init_application
nova.ipv6_backend =
rfc2462 = nova.ipv6.rfc2462
account_identifier = nova.ipv6.account_identifier
nova.scheduler.driver =
filter_scheduler = nova.scheduler.filter_scheduler:FilterScheduler
fake_scheduler = nova.tests.unit.scheduler.fakes:FakeScheduler
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[compile_catalog] [compile_catalog]
directory = nova/locale directory = nova/locale
domain = nova domain = nova
@@ -102,9 +98,5 @@ keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg mapping_file = babel.cfg
output_file = nova/locale/nova.pot output_file = nova/locale/nova.pot
[wheel] [bdist_wheel]
universal = 1 universal = 1
[extras]
osprofiler =
osprofiler>=1.4.0 # Apache-2.0