remove unused entrypoints
- stevedore enterypoints for intree plugins should be defined in setup.cfg. - This change remove the entrypoint definitions from setup.py as they are not needed. Change-Id: Id768d3fe28d8dfe350a75f88eca62022ac7074c0
This commit is contained in:
parent
e5227ecbc0
commit
4cacdaa560
@ -0,0 +1,6 @@
|
||||
---
|
||||
fixes:
|
||||
- os-vif plugins were previously incorrectly registered
|
||||
in both the setup.py and setup.cfg. All plugin registration
|
||||
have been removed form the setup.py as they were not used
|
||||
and may have blocked registration of out of tree plugins.
|
13
setup.py
13
setup.py
@ -27,17 +27,4 @@ except ImportError:
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['pbr'],
|
||||
entry_points={
|
||||
'os_vif.plugin': [
|
||||
'bridge = os_vif._plugins.linux_bridge:LinuxBridgePlugin',
|
||||
'iovisor = os_vif._plugins.iovisor:IovisorPlugin',
|
||||
'ivs = os_vif._plugins.ivs:IvsPlugin',
|
||||
'ivs_hybrid = os_vif._plugins.ivs_hybrid:IvsHybridPlugin',
|
||||
'ovs = os_vif._plugins.ovs:OvsPlugin',
|
||||
'ovs_hybrid = os_vif._plugins.ovs_hybrid:OvsHybridPlugin',
|
||||
'mlnx = os_vif._plugins.mellanox:MellanoxDirectPlugin',
|
||||
'midonet = os_vif._plugins.midonet:MidonetPlugin',
|
||||
'vhostuser = os_vif._plugins.vhostuser:VhostuserPlugin',
|
||||
'vrouter = os_vif._plugins.vrouter:VrouterPlugin',
|
||||
]},
|
||||
pbr=True)
|
||||
|
Loading…
x
Reference in New Issue
Block a user