summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: d8c17779ece95679781a9edffc471dc204800217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[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.6
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.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8

[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
    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>=2.17.0 # Apache-2.0
swift =
  httplib2>=0.9.1 # MIT
  python-swiftclient>=3.2.0 # Apache-2.0
cinder =
  python-cinderclient>=3.3.0 # Apache-2.0
  os-brick>=2.2.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

[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