From 2a2bc8a4e9498024c8a85ce2813e7d0f9c5677a0 Mon Sep 17 00:00:00 2001 From: Michal Minar Date: Tue, 30 Jul 2013 14:24:49 +0200 Subject: openlmi-python: split python package Split the openlmi-python package to 2: * openlmi-python-base - lmi namespace - functionality for any OpenLMI related python code - contains packages 'lmi' and 'lmi.base' * openlmi-python-providers - common functionality for OpenLMI providers - contains 'lmi.providers' --- src/python/lmi/base/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/python/lmi/base/__init__.py (limited to 'src/python/lmi/base/__init__.py') diff --git a/src/python/lmi/base/__init__.py b/src/python/lmi/base/__init__.py new file mode 100644 index 0000000..c3b443f --- /dev/null +++ b/src/python/lmi/base/__init__.py @@ -0,0 +1,24 @@ +# Software Management Providers +# +# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Authors: Michal Minar +# + +""" +Common utilities for OpenLMI python projects. +""" -- cgit