
For packagers, it's useful to have consistency. This patch ensures the api-paste is shipped with masakari as data files, like other projects do: [1], [2], [3]. In this patch, I also added the policy.json file, because the policy is not yet in code. Configuration files are not to be shipped with this manner, as they are generated. [1]: https://github.com/openstack/cinder/blob/master/setup.cfg#L28 [2]: https://github.com/openstack/glance/blob/master/setup.cfg#L20 [3]: https://github.com/openstack/nova/blob/master/setup.cfg#L26 Change-Id: I67aaca1da57909746766dc495b2009fb60feffd0
80 lines
2.2 KiB
INI
80 lines
2.2 KiB
INI
[metadata]
|
|
name = masakari
|
|
summary = Virtual Machine High Availability (VMHA) service for OpenStack
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = https://docs.openstack.org/masakari/latest/
|
|
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 :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.5
|
|
|
|
[files]
|
|
data_files =
|
|
etc/masakari =
|
|
etc/masakari/api-paste.ini
|
|
etc/masakari/policy.json
|
|
packages =
|
|
masakari
|
|
|
|
[entry_points]
|
|
oslo.config.opts =
|
|
masakari.conf = masakari.conf.opts:list_opts
|
|
|
|
oslo.config.opts.defaults =
|
|
masakari.api = masakari.common.config:set_middleware_defaults
|
|
|
|
console_scripts =
|
|
masakari-api = masakari.cmd.api:main
|
|
masakari-engine = masakari.cmd.engine:main
|
|
masakari-manage = masakari.cmd.manage:main
|
|
|
|
masakari.database.migration_backend =
|
|
sqlalchemy = oslo_db.sqlalchemy.migration
|
|
|
|
masakari.api.v1.extensions =
|
|
versions = masakari.api.openstack.ha.versionsV1:Versions
|
|
extension_info = masakari.api.openstack.ha.extension_info:ExtensionInfo
|
|
segments = masakari.api.openstack.ha.segments:Segments
|
|
hosts = masakari.api.openstack.ha.hosts:Hosts
|
|
notifications = masakari.api.openstack.ha.notifications:Notifications
|
|
|
|
masakari.driver =
|
|
taskflow_driver = masakari.engine.drivers.taskflow:TaskFlowDriver
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[compile_catalog]
|
|
directory = masakari/locale
|
|
domain = masakari
|
|
|
|
[update_catalog]
|
|
domain = masakari
|
|
output_dir = masakari/locale
|
|
input_file = masakari/locale/masakari.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = masakari/locale/masakari.pot
|
|
|
|
[build_releasenotes]
|
|
all_files = 1
|
|
build-dir = releasenotes/build
|
|
source-dir = releasenotes/source
|