2014-01-24 18:30:46 +01:00
|
|
|
[metadata]
|
2014-08-28 10:09:36 +02:00
|
|
|
name = glance_store
|
2014-01-24 18:30:46 +01:00
|
|
|
summary = OpenStack Image Service Store Library
|
2021-05-05 17:16:06 +08:00
|
|
|
description_file =
|
2014-01-24 18:30:46 +01:00
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
2021-05-05 17:16:06 +08:00
|
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
|
|
home_page = https://docs.openstack.org/glance_store/latest/
|
2022-05-10 19:25:24 -05:00
|
|
|
python_requires = >=3.8
|
2014-01-24 18:30:46 +01:00
|
|
|
classifier =
|
2015-09-02 17:36:48 -04:00
|
|
|
Development Status :: 5 - Production/Stable
|
2014-01-24 18:30:46 +01:00
|
|
|
Environment :: OpenStack
|
2014-07-17 09:46:43 +02:00
|
|
|
Intended Audience :: Developers
|
2014-01-24 18:30:46 +01:00
|
|
|
Intended Audience :: Information Technology
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Programming Language :: Python
|
2020-04-05 08:19:29 +02:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
2015-07-15 10:31:42 +02:00
|
|
|
Programming Language :: Python :: 3
|
2020-04-24 08:22:35 -05:00
|
|
|
Programming Language :: Python :: 3.8
|
2021-12-13 21:03:32 -06:00
|
|
|
Programming Language :: Python :: 3.9
|
2024-01-08 20:18:08 -08:00
|
|
|
Programming Language :: Python :: 3.10
|
|
|
|
Programming Language :: Python :: 3.11
|
2014-01-24 18:30:46 +01:00
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
2014-08-28 10:09:36 +02:00
|
|
|
glance_store
|
2020-08-07 19:52:18 +00:00
|
|
|
data_files =
|
|
|
|
etc/glance =
|
|
|
|
etc/glance/rootwrap.conf
|
|
|
|
etc/glance/rootwrap.d =
|
|
|
|
etc/glance/rootwrap.d/glance_cinder_store.filters
|
2014-01-24 18:30:46 +01:00
|
|
|
|
2014-02-10 14:51:47 +01:00
|
|
|
[entry_points]
|
2014-08-28 10:09:36 +02:00
|
|
|
glance_store.drivers =
|
|
|
|
file = glance_store._drivers.filesystem:Store
|
|
|
|
http = glance_store._drivers.http:Store
|
|
|
|
swift = glance_store._drivers.swift:Store
|
2014-09-05 10:49:07 +02:00
|
|
|
rbd = glance_store._drivers.rbd:Store
|
|
|
|
cinder = glance_store._drivers.cinder:Store
|
2014-08-28 10:09:36 +02:00
|
|
|
vmware = glance_store._drivers.vmware_datastore:Store
|
2019-11-25 16:08:25 +09:00
|
|
|
s3 = glance_store._drivers.s3:Store
|
2014-08-28 10:09:36 +02:00
|
|
|
|
|
|
|
# TESTS ONLY
|
|
|
|
no_conf = glance_store.tests.fakes:UnconfigurableStore
|
|
|
|
|
2014-09-05 10:49:07 +02:00
|
|
|
# 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
|
2019-11-25 16:08:25 +09:00
|
|
|
glance.store.s3.Store = glance_store._drivers.s3:Store
|
2014-09-05 10:49:07 +02:00
|
|
|
|
2014-09-09 16:24:07 +08:00
|
|
|
oslo.config.opts =
|
|
|
|
glance.store = glance_store.backend:_list_opts
|
2018-09-18 08:55:20 +00:00
|
|
|
glance.multi_store = glance_store.multi_backend:_list_config_opts
|
2014-09-09 16:24:07 +08:00
|
|
|
|
2015-03-20 18:35:17 -04:00
|
|
|
console_scripts =
|
|
|
|
glance-rootwrap = oslo_rootwrap.cmd:main
|
|
|
|
|
2015-07-29 15:58:49 +00:00
|
|
|
[extras]
|
|
|
|
# Dependencies for each of the optional stores
|
|
|
|
vmware =
|
2021-04-23 09:10:33 +00:00
|
|
|
oslo.vmware>=3.6.0 # Apache-2.0
|
2015-07-29 15:58:49 +00:00
|
|
|
swift =
|
2016-12-15 03:47:08 +00:00
|
|
|
python-swiftclient>=3.2.0 # Apache-2.0
|
2015-07-29 15:58:49 +00:00
|
|
|
cinder =
|
2020-04-23 13:46:01 -04:00
|
|
|
python-cinderclient>=4.1.0 # Apache-2.0
|
2023-05-11 12:12:51 -04:00
|
|
|
os-brick>=6.3.0 # Apache-2.0
|
2017-09-13 12:50:11 +00:00
|
|
|
oslo.rootwrap>=5.8.0 # Apache-2.0
|
|
|
|
oslo.privsep>=1.23.0 # Apache-2.0
|
2019-11-25 16:08:25 +09:00
|
|
|
s3 =
|
|
|
|
boto3>=1.9.199 # Apache-2.0
|