a2df410e76
Use autodoc_index_modules instead of autodoc_tree_index_modules so only one copy of the API docs are generated. Exclude the tests subpackage because it's not part of the Glance Python API. Exclude the glance.db.sqlalchemy subpackage to avoid issues caused when parts of it cannot be imported during the doc build because they rely on alembic setting up values that are not configured for a simple import. Change-Id: I127b812bc879fc39533b39df1785d93835142430 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
93 lines
2.7 KiB
INI
93 lines
2.7 KiB
INI
[metadata]
|
|
name = glance
|
|
summary = OpenStack Image Service
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://docs.openstack.org/developer/glance/
|
|
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
|
|
|
|
[files]
|
|
data_files =
|
|
etc/glance/metadefs = etc/metadefs/*
|
|
packages =
|
|
glance
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
glance-api = glance.cmd.api:main
|
|
glance-cache-prefetcher = glance.cmd.cache_prefetcher:main
|
|
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
|
|
wsgi_scripts =
|
|
glance-wsgi-api = glance.common.wsgi_app:init_app
|
|
glance.common.image_location_strategy.modules =
|
|
location_order_strategy = glance.common.location_strategy.location_order
|
|
store_type_strategy = glance.common.location_strategy.store_type
|
|
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
|
|
oslo.config.opts.defaults =
|
|
glance.api = glance.common.config:set_cors_middleware_defaults
|
|
glance.database.migration_backend =
|
|
sqlalchemy = oslo_db.sqlalchemy.migration
|
|
glance.database.metadata_backend =
|
|
sqlalchemy = glance.db.sqlalchemy.metadata
|
|
|
|
glance.flows =
|
|
import = glance.async.flows.base_import:get_flow
|
|
|
|
glance.flows.import =
|
|
convert = glance.async.flows.convert:get_flow
|
|
introspect = glance.async.flows.introspect:get_flow
|
|
ovf_process = glance.async.flows.ovf_process:get_flow
|
|
|
|
[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 = 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
|
|
|
|
[pbr]
|
|
autodoc_index_modules = True
|
|
autodoc_exclude_modules =
|
|
glance.tests.*
|
|
glance.db.sqlalchemy.*
|
|
api_doc_dir = contributor/api
|