2015-12-11 15:29:10 +08:00
|
|
|
[metadata]
|
|
|
|
name = tricircle
|
2016-10-06 23:10:57 +05:30
|
|
|
summary = The Tricircle is to provide networking automation across Neutron in multi-region OpenStack deployments.
|
2016-06-29 15:13:13 +08:00
|
|
|
description-file = README.rst
|
2015-12-11 15:29:10 +08:00
|
|
|
author = OpenStack
|
|
|
|
author-email = openstack-dev@lists.openstack.org
|
2017-07-19 08:19:40 +00:00
|
|
|
home-page = https://docs.openstack.org/tricircle/latest/
|
2015-12-11 15:29:10 +08:00
|
|
|
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
|
2017-01-18 11:45:15 +07:00
|
|
|
Programming Language :: Python :: 3.5
|
2015-12-11 15:29:10 +08:00
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
tricircle
|
|
|
|
|
|
|
|
[build_sphinx]
|
|
|
|
source-dir = doc/source
|
|
|
|
build-dir = doc/build
|
|
|
|
all_files = 1
|
2017-07-05 11:12:49 +08:00
|
|
|
warning-is-error = 1
|
2015-12-11 15:29:10 +08:00
|
|
|
|
|
|
|
[upload_sphinx]
|
|
|
|
upload-dir = doc/build/html
|
|
|
|
|
|
|
|
[compile_catalog]
|
|
|
|
directory = tricircle/locale
|
|
|
|
domain = tricircle
|
|
|
|
|
|
|
|
[update_catalog]
|
|
|
|
domain = tricircle
|
|
|
|
output_dir = tricircle/locale
|
|
|
|
input_file = tricircle/locale/tricircle.pot
|
|
|
|
|
|
|
|
[extract_messages]
|
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
|
|
mapping_file = babel.cfg
|
|
|
|
output_file = tricircle/locale/tricircle.pot
|
|
|
|
|
|
|
|
[entry_points]
|
2016-12-18 21:06:12 -06:00
|
|
|
console_scripts =
|
|
|
|
tricircle-api = tricircle.cmd.api:main
|
2017-03-02 02:39:34 -05:00
|
|
|
tricircle-db-manage = tricircle.cmd.manage:main
|
2016-12-18 21:06:12 -06:00
|
|
|
tricircle-xjob = tricircle.cmd.xjob:main
|
2017-03-02 02:39:34 -05:00
|
|
|
wsgi_scripts =
|
|
|
|
tricircle-api-wsgi = tricircle.api.wsgi:init_application
|
2016-01-14 12:06:20 +08:00
|
|
|
oslo.config.opts =
|
|
|
|
tricircle.api = tricircle.api.opts:list_opts
|
|
|
|
tricircle.common = tricircle.common.opts:list_opts
|
|
|
|
tricircle.db = tricircle.db.opts:list_opts
|
2016-06-20 19:40:38 +08:00
|
|
|
tricircle.network = tricircle.network.opts:list_opts
|
2016-01-14 12:06:20 +08:00
|
|
|
tricircle.xjob = tricircle.xjob.opts:list_opts
|
2017-10-16 11:51:21 +07:00
|
|
|
oslo.policy.policies =
|
|
|
|
tricircle = tricircle.common.policy:list_policies
|
2016-06-20 19:40:38 +08:00
|
|
|
tricircle.network.type_drivers =
|
|
|
|
local = tricircle.network.drivers.type_local:LocalTypeDriver
|
2017-01-14 15:37:39 +08:00
|
|
|
vlan = tricircle.network.drivers.type_vlan:VLANTypeDriver
|
2016-12-24 11:21:44 +08:00
|
|
|
vxlan = tricircle.network.drivers.type_vxlan:VxLANTypeDriver
|
2017-03-27 10:55:58 +08:00
|
|
|
flat = tricircle.network.drivers.type_flat:FlatTypeDriver
|
2017-11-06 11:09:16 +08:00
|
|
|
tricircle.network.extension_drivers =
|
|
|
|
qos = neutron.plugins.ml2.extensions.qos:QosExtensionDriver
|
2017-04-26 09:24:24 +08:00
|
|
|
networking_sfc.flowclassifier.drivers =
|
|
|
|
tricircle_fc = tricircle.network.central_fc_driver:TricircleFcDriver
|
|
|
|
networking_sfc.sfc.drivers =
|
2017-07-19 08:19:40 +00:00
|
|
|
tricircle_sfc = tricircle.network.central_sfc_driver:TricircleSfcDriver
|