2013-04-20 22:59:56 -07:00
|
|
|
[metadata]
|
|
|
|
name = glance
|
|
|
|
summary = OpenStack Image Service
|
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
2018-12-04 09:53:26 +08:00
|
|
|
author-email = openstack-discuss@lists.openstack.org
|
2017-07-14 15:08:55 +07:00
|
|
|
home-page = https://docs.openstack.org/glance/latest/
|
2013-04-20 22:59:56 -07: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
|
|
|
|
|
2015-07-28 21:01:07 -05:00
|
|
|
[files]
|
|
|
|
data_files =
|
2017-09-21 13:37:50 +01:00
|
|
|
etc/glance =
|
|
|
|
etc/glance-api.conf
|
|
|
|
etc/glance-cache.conf
|
|
|
|
etc/glance-manage.conf
|
|
|
|
etc/glance-registry.conf
|
|
|
|
etc/glance-scrubber.conf
|
|
|
|
etc/glance-api-paste.ini
|
|
|
|
etc/glance-registry-paste.ini
|
|
|
|
etc/policy.json
|
2015-07-28 21:01:07 -05:00
|
|
|
etc/glance/metadefs = etc/metadefs/*
|
2016-02-03 08:28:27 +01:00
|
|
|
packages =
|
|
|
|
glance
|
2015-07-28 21:01:07 -05:00
|
|
|
|
2013-04-20 22:59:56 -07:00
|
|
|
[entry_points]
|
|
|
|
console_scripts =
|
2013-10-27 07:00:29 +08:00
|
|
|
glance-api = glance.cmd.api:main
|
|
|
|
glance-cache-prefetcher = glance.cmd.cache_prefetcher:main
|
2013-04-20 22:59:56 -07:00
|
|
|
glance-cache-pruner = glance.cmd.cache_pruner:main
|
|
|
|
glance-cache-manage = glance.cmd.cache_manage:main
|
|
|
|
glance-cache-cleaner = glance.cmd.cache_cleaner:main
|
|
|
|
glance-control = glance.cmd.control:main
|
|
|
|
glance-manage = glance.cmd.manage:main
|
|
|
|
glance-registry = glance.cmd.registry:main
|
|
|
|
glance-replicator = glance.cmd.replicator:main
|
|
|
|
glance-scrubber = glance.cmd.scrubber:main
|
2018-10-15 16:48:42 +00:00
|
|
|
glance-status = glance.cmd.status:main
|
2017-04-24 16:32:02 -04:00
|
|
|
wsgi_scripts =
|
|
|
|
glance-wsgi-api = glance.common.wsgi_app:init_app
|
2013-10-27 07:00:29 +08:00
|
|
|
glance.common.image_location_strategy.modules =
|
|
|
|
location_order_strategy = glance.common.location_strategy.location_order
|
|
|
|
store_type_strategy = glance.common.location_strategy.store_type
|
2014-03-27 17:39:14 +08:00
|
|
|
oslo.config.opts =
|
|
|
|
glance.api = glance.opts:list_api_opts
|
|
|
|
glance.registry = glance.opts:list_registry_opts
|
|
|
|
glance.scrubber = glance.opts:list_scrubber_opts
|
|
|
|
glance.cache= glance.opts:list_cache_opts
|
|
|
|
glance.manage = glance.opts:list_manage_opts
|
2017-10-24 16:12:06 +05:30
|
|
|
glance = glance.opts:list_image_import_opts
|
2016-03-02 07:48:05 -08:00
|
|
|
oslo.config.opts.defaults =
|
2016-03-11 15:27:51 -05:00
|
|
|
glance.api = glance.common.config:set_cors_middleware_defaults
|
2014-10-01 17:53:38 +03:00
|
|
|
glance.database.migration_backend =
|
2015-04-28 18:57:45 +00:00
|
|
|
sqlalchemy = oslo_db.sqlalchemy.migration
|
2014-11-20 18:13:16 +02:00
|
|
|
glance.database.metadata_backend =
|
|
|
|
sqlalchemy = glance.db.sqlalchemy.metadata
|
2013-04-20 22:59:56 -07:00
|
|
|
|
2019-02-19 20:32:11 +01:00
|
|
|
oslo.policy.enforcer =
|
|
|
|
glance = glance.api.policy:get_enforcer
|
|
|
|
|
2015-02-12 16:16:20 +01:00
|
|
|
glance.flows =
|
2018-07-13 09:20:04 -04:00
|
|
|
api_image_import = glance.async_.flows.api_image_import:get_flow
|
|
|
|
import = glance.async_.flows.base_import:get_flow
|
2015-02-12 16:16:20 +01:00
|
|
|
|
|
|
|
glance.flows.import =
|
2018-07-13 09:20:04 -04:00
|
|
|
convert = glance.async_.flows.convert:get_flow
|
|
|
|
introspect = glance.async_.flows.introspect:get_flow
|
|
|
|
ovf_process = glance.async_.flows.ovf_process:get_flow
|
2015-02-12 16:16:20 +01:00
|
|
|
|
2017-12-18 12:48:10 +00:00
|
|
|
glance.image_import.plugins =
|
2018-07-13 09:20:04 -04:00
|
|
|
no_op = glance.async_.flows.plugins.no_op:get_flow
|
|
|
|
inject_image_metadata=glance.async_.flows.plugins.inject_image_metadata:get_flow
|
|
|
|
image_conversion=glance.async_.flows.plugins.image_conversion:get_flow
|
2017-12-18 12:48:10 +00:00
|
|
|
|
2018-01-10 09:21:46 +00:00
|
|
|
glance.image_import.internal_plugins =
|
2018-07-13 09:20:04 -04:00
|
|
|
web_download = glance.async_.flows._internal_plugins.web_download:get_flow
|
2018-01-10 09:21:46 +00:00
|
|
|
|
2010-09-26 00:25:34 -07:00
|
|
|
|
|
|
|
[egg_info]
|
2014-11-05 21:23:51 +03:00
|
|
|
tag_build =
|
2010-09-26 00:25:34 -07:00
|
|
|
tag_date = 0
|
|
|
|
tag_svn_revision = 0
|
2012-02-06 13:15:38 +00:00
|
|
|
|
2012-02-20 11:46:46 -08:00
|
|
|
[compile_catalog]
|
|
|
|
directory = glance/locale
|
|
|
|
domain = glance
|
|
|
|
|
|
|
|
[update_catalog]
|
|
|
|
domain = glance
|
|
|
|
output_dir = glance/locale
|
|
|
|
input_file = glance/locale/glance.pot
|
|
|
|
|
|
|
|
[extract_messages]
|
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
|
|
mapping_file = babel.cfg
|
|
|
|
output_file = glance/locale/glance.pot
|