File: setup.cfg

package info (click to toggle)
networking-l2gw 1%3A17.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,292 kB
  • sloc: python: 12,266; sh: 318; makefile: 26
file content (51 lines) | stat: -rw-r--r-- 2,233 bytes parent folder | download | duplicates (2)
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
[metadata]
name = networking-l2gw
summary = APIs and implementations to support L2 Gateways in Neutron.
description-file =
    README.rst
author = OpenStack
author-email = openstack-discuss@lists.openstack.org
home-page = https://opendev.org/x/networking-l2gw
python-requires = >=3.6
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.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8

[files]
packages =
    networking_l2gw
data_files =
    etc/neutron =
        etc/l2gateway_agent.ini
        etc/l2gw_plugin.ini

[entry_points]
console_scripts =
    neutron-l2gateway-agent = networking_l2gw.cmd.eventlet.agent:main
neutron.db.alembic_migrations =
    networking-l2gw = networking_l2gw.db.migration:alembic_migrations
neutronclient.extension =
    l2_gateway_connection = networking_l2gw.l2gatewayclient.l2gw_client_ext._l2_gateway_connection
    l2_gateway = networking_l2gw.l2gatewayclient.l2gw_client_ext._l2_gateway
openstack.neutronclient.v2 =
    l2gw_create = networking_l2gw.l2gatewayclient.osc.l2gw:CreateL2gw
    l2gw_list = networking_l2gw.l2gatewayclient.osc.l2gw:ListL2gw
    l2gw_show = networking_l2gw.l2gatewayclient.osc.l2gw:ShowL2gw
    l2gw_delete = networking_l2gw.l2gatewayclient.osc.l2gw:DeleteL2gw
    l2gw_update = networking_l2gw.l2gatewayclient.osc.l2gw:UpdateL2gw
    l2gw_connection_create = networking_l2gw.l2gatewayclient.osc.l2gw_connection:CreateL2gwConnection
    l2gw_connection_list = networking_l2gw.l2gatewayclient.osc.l2gw_connection:ListL2gwConnection
    l2gw_connection_show = networking_l2gw.l2gatewayclient.osc.l2gw_connection:ShowL2gwConnection
    l2gw_connection_delete = networking_l2gw.l2gatewayclient.osc.l2gw_connection:DeleteL2gwConnection
neutron.service_plugins =
    l2gw = networking_l2gw.services.l2gateway.plugin:L2GatewayPlugin