File: setup.cfg

package info (click to toggle)
networking-l2gw 1%3A21.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,260 kB
  • sloc: python: 11,880; sh: 289; makefile: 26
file content (49 lines) | stat: -rw-r--r-- 2,076 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
[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.9
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.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12

[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
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