File: setup.cfg

package info (click to toggle)
freezer-api 13.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,880 kB
  • sloc: python: 15,656; sh: 389; makefile: 59
file content (63 lines) | stat: -rw-r--r-- 2,131 bytes parent folder | download
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
[metadata]
name = freezer-api
summary = OpenStack Backup and Restore API Service
description_file = README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
license = Apache-2
home_page = https://docs.openstack.org/freezer/latest/
python_requires = >=3.8
classifier =
    Environment :: OpenStack
    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
    Development Status :: 5 - Production/Stable
    Natural Language :: English
    Intended Audience :: Developers
    Intended Audience :: Financial and Insurance Industry
    Intended Audience :: Information Technology
    Intended Audience :: System Administrators
    Intended Audience :: Telecommunications Industry
    License :: OSI Approved :: Apache Software License
    Operating System :: MacOS
    Operating System :: POSIX :: BSD :: FreeBSD
    Operating System :: POSIX :: BSD :: NetBSD
    Operating System :: POSIX :: BSD :: OpenBSD
    Operating System :: POSIX :: Linux
    Operating System :: Unix
    Topic :: System :: Archiving :: Backup
    Topic :: System :: Archiving :: Compression
    Topic :: System :: Archiving

[files]
data_files =
    etc/freezer =
        etc/freezer/freezer-paste.ini
packages =
    freezer_api

[entry_points]
oslo.config.opts =
    freezer-api = freezer_api.common.config:list_opts
oslo.config.opts.defaults =
    freezer-api = freezer_api.common.config:set_lib_defaults
oslo.policy.policies =
    freezer-api = freezer_api.common.policies:list_rules
console_scripts =
    freezer-api = freezer_api.cmd.api:main
    freezer-manage = freezer_api.cmd.manage:main
    freezer-manager-status = freezer_api.cmd.status:main
wsgi_scripts =
    freezer-api-wsgi = freezer_api.service:initialize_app

freezer.db.backends =
     sqlalchemy = freezer_api.db.sqlalchemy.driver:SQLDriver
     elasticsearch = freezer_api.db.elasticsearch.driver:ElasticSearchDB

[pytests]
where=tests
verbosity=2