
Python 3.9 is no longer part of the tested runtimes[1]. [1] https://governance.openstack.org/tc/reference/runtimes/2025.2.html Change-Id: Ie96b62f758461369cf750eb5937ea890c3bf83c0 Co-authored-by: Takashi Kajinami <kajinamit@oss.nttdata.com> Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
73 lines
2.7 KiB
INI
73 lines
2.7 KiB
INI
[metadata]
|
|
name = trove
|
|
summary = OpenStack DBaaS
|
|
description_file =
|
|
README.rst
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
home_page = https://docs.openstack.org/trove/latest/
|
|
python_requires = >= 3.10
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
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.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
|
|
[files]
|
|
data_files =
|
|
etc/trove =
|
|
etc/trove/api-paste.ini
|
|
packages =
|
|
trove
|
|
|
|
[entry_points]
|
|
wsgi_scripts =
|
|
trove-wsgi = trove.cmd.app_wsgi:wsgimain
|
|
console_scripts =
|
|
trove-api = trove.cmd.api:main
|
|
trove-taskmanager = trove.cmd.taskmanager:main
|
|
trove-mgmt-taskmanager = trove.cmd.taskmanager:mgmt_main
|
|
trove-conductor = trove.cmd.conductor:main
|
|
trove-manage = trove.cmd.manage:main
|
|
trove-guestagent = trove.cmd.guest:main
|
|
trove-fake-mode = trove.cmd.fakemode:main
|
|
trove-status = trove.cmd.status:main
|
|
trove-docker-plugin = trove.cmd.network_driver:main
|
|
|
|
trove.api.extensions =
|
|
mgmt = trove.extensions.routes.mgmt:Mgmt
|
|
mysql = trove.extensions.routes.mysql:Mysql
|
|
|
|
trove.guestagent.module.drivers =
|
|
ping = trove.guestagent.module.drivers.ping_driver:PingDriver
|
|
new_relic_license = trove.guestagent.module.drivers.new_relic_license_driver:NewRelicLicenseDriver
|
|
|
|
# These are for backwards compatibility with Havana notification_driver configuration values
|
|
oslo.messaging.notify.drivers =
|
|
trove.openstack.common.notifier.log_notifier = oslo_messaging.notify._impl_log:LogDriver
|
|
trove.openstack.common.notifier.no_op_notifier = oslo_messaging.notify._impl_noop:NoOpDriver
|
|
trove.openstack.common.notifier.rpc_notifier2 = oslo_messaging.notify.messaging:MessagingV2Driver
|
|
trove.openstack.common.notifier.rpc_notifier = oslo_messaging.notify.messaging:MessagingDriver
|
|
trove.openstack.common.notifier.test_notifier = oslo_messaging.notify._impl_test:TestDriver
|
|
|
|
oslo.policy.policies =
|
|
# The sample policies will be ordered by entry point and then by list
|
|
# returned from that entry point. If more control is desired split out each
|
|
# list_rules method into a separate entry point rather than using the
|
|
# aggregate method.
|
|
trove = trove.common.policies:list_rules
|
|
|
|
oslo.policy.enforcer =
|
|
trove = trove.common.policy:get_enforcer
|
|
|
|
oslo.config.opts =
|
|
trove.config = trove.common.cfg:list_opts
|