35c9d978f3
Universal is used to identify pure-Python module(by bdist_wheel). For these, it is sufficient to build a wheel with _any_ Python ABI version and publish that to PyPI (by whatever means). Change-Id: I40d66609277e58e8d6fee9cc98948f7b2507f75a
78 lines
2.4 KiB
INI
78 lines
2.4 KiB
INI
[metadata]
|
|
name = glance_store
|
|
summary = OpenStack Image Service Store Library
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
classifier =
|
|
Development Status :: 3 - Alpha
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
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
|
|
|
|
[files]
|
|
packages =
|
|
glance_store
|
|
|
|
[entry_points]
|
|
glance_store.drivers =
|
|
file = glance_store._drivers.filesystem:Store
|
|
http = glance_store._drivers.http:Store
|
|
swift = glance_store._drivers.swift:Store
|
|
rbd = glance_store._drivers.rbd:Store
|
|
s3 = glance_store._drivers.s3:Store
|
|
sheepdog = glance_store._drivers.sheepdog:Store
|
|
cinder = glance_store._drivers.cinder:Store
|
|
gridfs = glance_store._drivers.gridfs:Store
|
|
vmware = glance_store._drivers.vmware_datastore:Store
|
|
|
|
# TESTS ONLY
|
|
no_conf = glance_store.tests.fakes:UnconfigurableStore
|
|
|
|
# Backwards compatibility
|
|
glance.store.filesystem.Store = glance_store._drivers.filesystem:Store
|
|
glance.store.http.Store = glance_store._drivers.http:Store
|
|
glance.store.swift.Store = glance_store._drivers.swift:Store
|
|
glance.store.rbd.Store = glance_store._drivers.rbd:Store
|
|
glance.store.s3.Store = glance_store._drivers.s3:Store
|
|
glance.store.sheepdog.Store = glance_store._drivers.sheepdog:Store
|
|
glance.store.cinder.Store = glance_store._drivers.cinder:Store
|
|
glance.store.gridfs.Store = glance_store._drivers.gridfs:Store
|
|
glance.store.vmware_datastore.Store = glance_store._drivers.vmware_datastore:Store
|
|
|
|
oslo.config.opts =
|
|
glance.store = glance_store.backend:_list_opts
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[compile_catalog]
|
|
directory = glance_store/locale
|
|
domain = glance_store
|
|
|
|
[update_catalog]
|
|
domain = glance_store
|
|
output_dir = glance_store/locale
|
|
input_file = glance_store/locale/glance_store.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = glance_store/locale/glance_store.pot
|
|
|
|
[wheel]
|
|
universal = 1
|