2013-04-07 18:24:27 -04:00
|
|
|
[metadata]
|
|
|
|
name = nova
|
|
|
|
summary = Cloud computing fabric controller
|
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
|
|
|
author-email = openstack-dev@lists.openstack.org
|
2017-07-14 16:34:55 +07:00
|
|
|
home-page = https://docs.openstack.org/nova/latest/
|
2013-04-07 18:24:27 -04:00
|
|
|
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
|
2017-06-29 13:53:21 +09:00
|
|
|
Programming Language :: Python :: 3
|
2017-06-27 16:35:11 +05:30
|
|
|
Programming Language :: Python :: 3.5
|
2013-04-07 18:24:27 -04:00
|
|
|
|
|
|
|
[global]
|
|
|
|
setup-hooks =
|
|
|
|
pbr.hooks.setup_hook
|
|
|
|
|
|
|
|
[files]
|
2017-09-21 14:57:51 +01:00
|
|
|
data_files =
|
|
|
|
etc/nova =
|
|
|
|
etc/nova/api-paste.ini
|
|
|
|
etc/nova/rootwrap.conf
|
|
|
|
etc/nova/rootwrap.d = etc/nova/rootwrap.d/*
|
2013-04-07 18:24:27 -04:00
|
|
|
packages =
|
|
|
|
nova
|
|
|
|
|
|
|
|
[entry_points]
|
2015-05-04 23:00:25 -04:00
|
|
|
oslo.config.opts =
|
2015-12-21 14:37:15 +01:00
|
|
|
nova.conf = nova.conf.opts:list_opts
|
2015-05-04 23:00:25 -04:00
|
|
|
|
2016-03-01 10:49:32 -08:00
|
|
|
oslo.config.opts.defaults =
|
2017-01-26 14:25:22 +09:00
|
|
|
nova.conf = nova.common.config:set_middleware_defaults
|
2016-03-01 10:49:32 -08:00
|
|
|
|
2016-06-29 16:59:20 -04:00
|
|
|
oslo.policy.enforcer =
|
|
|
|
nova = nova.policy:get_enforcer
|
2017-11-30 18:09:00 -05:00
|
|
|
placement = nova.api.openstack.placement.policy:get_enforcer
|
2016-06-29 16:59:20 -04:00
|
|
|
|
2016-06-21 16:53:57 -04:00
|
|
|
oslo.policy.policies =
|
|
|
|
# The sample policies will be ordered by entry point and then by list
|
|
|
|
# returned from that entry point. If more control is desired split out each
|
|
|
|
# list_rules method into a separate entry point rather than using the
|
|
|
|
# aggregate method.
|
|
|
|
nova = nova.policies:list_rules
|
2017-11-30 18:09:00 -05:00
|
|
|
placement = nova.api.openstack.placement.policies:list_rules
|
2016-06-21 16:53:57 -04:00
|
|
|
|
2015-06-26 14:33:03 -04:00
|
|
|
nova.compute.monitors.cpu =
|
|
|
|
virt_driver = nova.compute.monitors.cpu.virt_driver:Monitor
|
2015-10-29 04:47:38 +00:00
|
|
|
|
2013-04-07 18:24:27 -04:00
|
|
|
console_scripts =
|
|
|
|
nova-api = nova.cmd.api:main
|
|
|
|
nova-api-metadata = nova.cmd.api_metadata:main
|
|
|
|
nova-api-os-compute = nova.cmd.api_os_compute:main
|
|
|
|
nova-cells = nova.cmd.cells:main
|
|
|
|
nova-compute = nova.cmd.compute:main
|
|
|
|
nova-conductor = nova.cmd.conductor:main
|
|
|
|
nova-console = nova.cmd.console:main
|
|
|
|
nova-consoleauth = nova.cmd.consoleauth:main
|
|
|
|
nova-dhcpbridge = nova.cmd.dhcpbridge:main
|
|
|
|
nova-manage = nova.cmd.manage:main
|
|
|
|
nova-network = nova.cmd.network:main
|
|
|
|
nova-novncproxy = nova.cmd.novncproxy:main
|
2017-10-25 17:56:40 +01:00
|
|
|
nova-policy = nova.cmd.policy:main
|
2015-01-30 23:02:27 +08:00
|
|
|
nova-rootwrap = oslo_rootwrap.cmd:main
|
2015-05-06 15:35:02 -04:00
|
|
|
nova-rootwrap-daemon = oslo_rootwrap.cmd:daemon
|
2013-04-07 18:24:27 -04:00
|
|
|
nova-scheduler = nova.cmd.scheduler:main
|
2014-08-25 12:43:28 +00:00
|
|
|
nova-serialproxy = nova.cmd.serialproxy:main
|
2013-04-07 18:24:27 -04:00
|
|
|
nova-spicehtml5proxy = nova.cmd.spicehtml5proxy:main
|
2016-12-15 16:01:41 -05:00
|
|
|
nova-status = nova.cmd.status:main
|
2013-04-07 18:24:27 -04:00
|
|
|
nova-xvpvncproxy = nova.cmd.xvpvncproxy:main
|
2016-08-30 21:05:06 -04:00
|
|
|
wsgi_scripts =
|
|
|
|
nova-placement-api = nova.api.openstack.placement.wsgi:init_application
|
2017-04-17 16:38:49 +00:00
|
|
|
nova-api-wsgi = nova.api.openstack.compute.wsgi:init_application
|
2017-04-24 15:56:52 +00:00
|
|
|
nova-metadata-wsgi = nova.api.metadata.wsgi:init_application
|
2013-04-07 18:24:27 -04:00
|
|
|
|
2014-10-03 16:57:33 +03:00
|
|
|
nova.ipv6_backend =
|
|
|
|
rfc2462 = nova.ipv6.rfc2462
|
|
|
|
account_identifier = nova.ipv6.account_identifier
|
2014-11-21 17:48:02 +10:30
|
|
|
|
2015-12-08 13:47:32 +00:00
|
|
|
nova.scheduler.driver =
|
|
|
|
filter_scheduler = nova.scheduler.filter_scheduler:FilterScheduler
|
|
|
|
caching_scheduler = nova.scheduler.caching_scheduler:CachingScheduler
|
|
|
|
fake_scheduler = nova.tests.unit.scheduler.fakes:FakeScheduler
|
|
|
|
|
2010-07-27 21:41:07 -07:00
|
|
|
[egg_info]
|
2013-07-10 05:22:18 +00:00
|
|
|
tag_build =
|
2010-07-27 21:41:07 -07:00
|
|
|
tag_date = 0
|
|
|
|
tag_svn_revision = 0
|
2012-02-07 14:32:15 -08:00
|
|
|
|
|
|
|
[compile_catalog]
|
2012-02-08 00:16:50 -08:00
|
|
|
directory = nova/locale
|
2017-03-01 10:45:17 +01:00
|
|
|
domain = nova
|
2012-02-07 14:32:15 -08:00
|
|
|
|
|
|
|
[update_catalog]
|
|
|
|
domain = nova
|
2012-02-08 00:16:50 -08:00
|
|
|
output_dir = nova/locale
|
|
|
|
input_file = nova/locale/nova.pot
|
2012-02-07 14:32:15 -08:00
|
|
|
|
|
|
|
[extract_messages]
|
2012-02-08 00:16:50 -08:00
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
2012-02-07 14:32:15 -08:00
|
|
|
mapping_file = babel.cfg
|
2012-02-08 00:16:50 -08:00
|
|
|
output_file = nova/locale/nova.pot
|
2014-02-07 12:32:17 +01:00
|
|
|
|
|
|
|
[wheel]
|
|
|
|
universal = 1
|
2014-07-08 11:58:51 -07:00
|
|
|
|
2015-12-08 14:32:10 +03:00
|
|
|
[extras]
|
|
|
|
osprofiler =
|
2017-01-20 19:43:54 +00:00
|
|
|
osprofiler>=1.4.0 # Apache-2.0
|