forked from iawells/networking-vpp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
68 lines (60 loc) · 1.91 KB
/
setup.cfg
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[metadata]
name = networking-vpp
summary = OpenStack Networking for VPP
description-file =
README.rst
author = OpenStack
author-email = [email protected]
home-page = http://www.openstack.org/
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
[files]
packages =
networking_vpp
data_files =
etc/neutron =
etc/neutron/plugins/ml2/ml2_conf_vpp.ini
[global]
setup-hooks =
pbr.hooks.setup_hook
[entry_points]
# [ml2]
# mechanism_drivers = vpp
console_scripts =
vpp-agent = networking_vpp.agent.server:main
vpp-dump-acls = networking_vpp.tools.dump_acl_info:main
vpp-dump-tags = networking_vpp.tools.dump_tag_info:main
vpp-check-etcd = networking_vpp.tools.test_etcd_content:main
vpp-check-vpp = networking_vpp.tools.test_vpp_content:main
vpp-watch-etcd = networking_vpp.tools.watch_changes:main
vpp-etcd-role-conf = networking_vpp.tools.etcd_role_conf:main
neutron.ml2.mechanism_drivers =
vpp = networking_vpp.mech_vpp:VPPMechanismDriver
neutron.db.alembic_migrations =
networking-vpp = networking_vpp.db.migration:alembic_migrations
neutron.service_plugins =
vpp-router = networking_vpp.services.l3_router.l3_vpp:VppL3RouterPlugin
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = networking_vpp/locale/networking-vpp.pot
[compile_catalog]
directory = networking_vpp/locale
domain = networking-vpp
[update_catalog]
domain = networking-vpp
output_dir = networking_vpp/locale
input_file = networking_vpp/locale/networking-vpp.pot
[wheel]
universal = 1