summaryrefslogtreecommitdiffstats
path: root/src/python
diff options
context:
space:
mode:
Diffstat (limited to 'src/python')
-rw-r--r--src/python/README2
-rw-r--r--src/python/openlmi/__init__.py1
-rw-r--r--src/python/openlmi/__init__.pycbin0 -> 246 bytes
-rw-r--r--src/python/setup.py16
4 files changed, 19 insertions, 0 deletions
diff --git a/src/python/README b/src/python/README
new file mode 100644
index 0000000..69ac71b
--- /dev/null
+++ b/src/python/README
@@ -0,0 +1,2 @@
+This is a python namespace package for all openlmi CIM providers
+using cmpi-pywbem-bindings.
diff --git a/src/python/openlmi/__init__.py b/src/python/openlmi/__init__.py
new file mode 100644
index 0000000..de40ea7
--- /dev/null
+++ b/src/python/openlmi/__init__.py
@@ -0,0 +1 @@
+__import__('pkg_resources').declare_namespace(__name__)
diff --git a/src/python/openlmi/__init__.pyc b/src/python/openlmi/__init__.pyc
new file mode 100644
index 0000000..d7131d7
--- /dev/null
+++ b/src/python/openlmi/__init__.pyc
Binary files differ
diff --git a/src/python/setup.py b/src/python/setup.py
new file mode 100644
index 0000000..84284f2
--- /dev/null
+++ b/src/python/setup.py
@@ -0,0 +1,16 @@
+from setuptools import setup
+setup(
+ name='openlmi',
+ description='OpenLMI python providers',
+ author='Michal Minar',
+ author_email='miminar@redhat.com',
+ url='https://fedorahosted.org/openlmi/',
+ version='0.1',
+ namespace_packages = ['openlmi'],
+ packages = ['openlmi'],
+ classifiers=[
+ 'license :: osi approved :: gnu general public license v2 or later (gplv2+)',
+ 'operating system :: posix :: linux',
+ 'topic :: system :: systems administration',
+ ]
+ )