feb290fa19
1. It's Ussuri. We can *finally* stop testing Python 2 [1]. Time to party. We don't attempt any cleanup but simply stop testing with Python 2, indicate that we only support Python 3 via 'setup.cfg' and remove any Python 2 only dependencies. This should free up a significant amount of resources from the gate and let us start using Python 3 idioms in our code. Win-win. 2. Cleanup basepython from individual testenv sections 3. From this point on the codebase will be incompatible with python2 [1] https://governance.openstack.org/tc/resolutions/20180529-python2-deprecation-timeline.html#python2-deprecation-timeline Change-Id: Ia08c363263aaa406d0bf55e10ce8258695387578
76 lines
3.0 KiB
INI
76 lines
3.0 KiB
INI
[metadata]
|
|
name = neutron-fwaas
|
|
summary = OpenStack Networking FWaaS
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
home-page = https://docs.openstack.org/neutron-fwaas/latest/
|
|
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 :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
[files]
|
|
packages =
|
|
neutron_fwaas
|
|
|
|
data_files =
|
|
etc/neutron/rootwrap.d =
|
|
etc/neutron/rootwrap.d/fwaas-privsep.filters
|
|
|
|
[entry_points]
|
|
firewall_drivers =
|
|
iptables_v2 = neutron_fwaas.services.firewall.service_drivers.agents.drivers.linux.iptables_fwaas_v2:IptablesFwaasDriver
|
|
neutron.service_plugins =
|
|
firewall_v2 = neutron_fwaas.services.firewall.fwaas_plugin_v2:FirewallPluginV2
|
|
|
|
neutron.db.alembic_migrations =
|
|
neutron-fwaas = neutron_fwaas.db.migration:alembic_migrations
|
|
oslo.config.opts =
|
|
neutron.fwaas = neutron_fwaas.opts:list_opts
|
|
firewall.agent = neutron_fwaas.opts:list_agent_opts
|
|
oslo.policy.policies =
|
|
neutron-fwaas = neutron_fwaas.policies:list_rules
|
|
neutron.policies =
|
|
neutron-fwaas = neutron_fwaas.policies:list_rules
|
|
neutron.agent.l2.extensions =
|
|
fwaas_v2 = neutron_fwaas.services.firewall.service_drivers.agents.l2.fwaas_v2:FWaaSV2AgentExtension
|
|
neutron.agent.l2.firewall_drivers =
|
|
noop = neutron_fwaas.services.firewall.service_drivers.agents.drivers.linux.l2.noop.noop_driver:NoopFirewallL2Driver
|
|
ovs = neutron_fwaas.services.firewall.service_drivers.agents.drivers.linux.l2.openvswitch_firewall.firewall:OVSFirewallDriver
|
|
neutron.agent.l3.extensions =
|
|
fwaas_v2 = neutron_fwaas.services.firewall.service_drivers.agents.l3reference.firewall_l3_agent_v2:L3WithFWaaS
|
|
fwaas_v2_log = neutron_fwaas.services.logapi.agents.l3.fwg_log:FWaaSL3LoggingExtension
|
|
neutron.agent.l3.firewall_drivers =
|
|
conntrack = neutron_fwaas.services.firewall.service_drivers.agents.drivers.linux.legacy_conntrack:ConntrackLegacy
|
|
netlink_conntrack = neutron_fwaas.services.firewall.service_drivers.agents.drivers.linux.netlink_conntrack:ConntrackNetlink
|
|
neutron.services.logapi.drivers =
|
|
fwaas_v2_log = neutron_fwaas.services.logapi.agents.drivers.iptables.log:IptablesLoggingDriver
|
|
console_scripts =
|
|
neutron-fwaas-migrate-v1-to-v2 = neutron_fwaas.cmd.v1_to_v2_db_migration:main
|
|
neutron.status.upgrade.checks =
|
|
neutron_fwaas = neutron_fwaas.cmd.upgrade_checks.checks:Checks
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = neutron_fwaas/locale/neutron_fwaas.pot
|
|
|
|
[compile_catalog]
|
|
directory = neutron_fwaas/locale
|
|
domain = neutron_fwaas
|
|
|
|
[update_catalog]
|
|
domain = neutron_fwaas
|
|
output_dir = neutron_fwaas/locale
|
|
input_file = neutron_fwaas/locale/neutron_fwaas.pot
|