bifrost/bifrost/__init__.py
Julia Kreger 8d878e6268 Modularize inventory and add initial testing
The inventory module for bifrost is a vital component, however
as it was developed as a single file and it needs to to be broken
up into a modular chunk in order to have meaningful testing.

Broke into module, symlinking the file into place for now until
documentation and install process can be updated.

Added two basic tests to lay the groundwork for basic testing
of the data parsing and result passing.

Change-Id: I02e79b635202a7933ae641b9d27cc19a75b7bc4f
Partial-Bug: 1499801
2015-11-04 18:19:49 -05:00

24 lines
694 B
Python

# -*- coding: utf-8 -*-
# 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.
import pbr.version
__version__ = pbr.version.VersionInfo(
'bifrost').version_string()
__all__ = [
'inventory'
]