nova/nova/virt/__init__.py
Eric Fried 2b65c79934 Declare nova.virt namespace
This change set declares the nova.virt namespace per PEP420
(https://www.python.org/dev/peps/pep-0420/).  This allows composing
nova.virt for drivers under test from separate packages.

Change-Id: I78c0ca85cb6ee2e370214a89a203f6f099748930
Partial-Bug: 1575335
2016-04-28 15:01:44 +00:00

19 lines
751 B
Python

# Copyright 2016 IBM Corp.
#
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# Allow composition of nova.virt namespace from disparate packages.
__import__('pkg_resources').declare_namespace(__name__)