ce86bf3823
Raise the min version of os-brick to include the fix for CVE-2023-2088. Change-Id: If3dba01d5cbb3a3deacdf23ab5290d7bcab4b5c7 Related-bug: #2004555
76 lines
2.5 KiB
INI
76 lines
2.5 KiB
INI
[metadata]
|
|
name = glance_store
|
|
summary = OpenStack Image Service Store Library
|
|
description_file =
|
|
README.rst
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
home_page = https://docs.openstack.org/glance_store/latest/
|
|
python_requires = >=3.8
|
|
classifier =
|
|
Development Status :: 5 - Production/Stable
|
|
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 :: Implementation :: CPython
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
|
|
[files]
|
|
packages =
|
|
glance_store
|
|
data_files =
|
|
etc/glance =
|
|
etc/glance/rootwrap.conf
|
|
etc/glance/rootwrap.d =
|
|
etc/glance/rootwrap.d/glance_cinder_store.filters
|
|
|
|
[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
|
|
cinder = glance_store._drivers.cinder:Store
|
|
vmware = glance_store._drivers.vmware_datastore:Store
|
|
s3 = glance_store._drivers.s3: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.cinder.Store = glance_store._drivers.cinder:Store
|
|
glance.store.vmware_datastore.Store = glance_store._drivers.vmware_datastore:Store
|
|
glance.store.s3.Store = glance_store._drivers.s3:Store
|
|
|
|
oslo.config.opts =
|
|
glance.store = glance_store.backend:_list_opts
|
|
glance.multi_store = glance_store.multi_backend:_list_config_opts
|
|
|
|
console_scripts =
|
|
glance-rootwrap = oslo_rootwrap.cmd:main
|
|
|
|
[extras]
|
|
# Dependencies for each of the optional stores
|
|
vmware =
|
|
oslo.vmware>=3.6.0 # Apache-2.0
|
|
swift =
|
|
httplib2>=0.9.1 # MIT
|
|
python-swiftclient>=3.2.0 # Apache-2.0
|
|
cinder =
|
|
python-cinderclient>=4.1.0 # Apache-2.0
|
|
os-brick>=6.3.0 # Apache-2.0
|
|
oslo.rootwrap>=5.8.0 # Apache-2.0
|
|
oslo.privsep>=1.23.0 # Apache-2.0
|
|
s3 =
|
|
boto3>=1.9.199 # Apache-2.0
|