-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·41 lines (38 loc) · 1.5 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
[metadata]
name = isoflat
version = 0.0.1
description = OpenStack flat network multiplexing and isolation
description-file = README.rst
author = Ruipeng Zhang
author-email = rxzhang@ualr.edu
license = Apache-2
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]
packages = neutron_isoflat
[entry_points]
neutronclient.extension =
isoflat = neutron_isoflat.isoflat_client.isoflat
neutron.agent.l2.extensions =
isoflat = neutron_isoflat.services.isoflat.agents.extensions.isoflat:IsoflatAgentExtension
neutron_isoflat.isoflat.agent_drivers =
ovs = neutron_isoflat.services.isoflat.agents.drivers.linux.openvswitch:IsoflatOvsDriver
linuxbridge = neutron_isoflat.services.isoflat.agents.drivers.linux.linuxbridge:IsoflatLinuxBridgeDriver
neutron_isoflat.isoflat.firewall_drivers =
ebtables = neutron_isoflat.services.isoflat.agents.firewall.linux.ebtables_firewall:EbtablesFirewall
neutron.service_plugins =
isoflat = neutron_isoflat.services.isoflat.isoflat_plugin:IsoflatPlugin
neutron.db.alembic_migrations =
isoflat = neutron_isoflat.db.migration:alembic_migration
[pbr]
autodoc_index_modules = True
warnerrors = True