#!/usr/bin/env python
# Note, you'll typically want to override where these get installed.
# For example:
# python setup.py install --install-lib=/usr/lib/pycim -O1
from distutils.core import setup
setup(name='omc-pybase-providers',
author='Jon Carey, Bart Whiteley',
author_email='jcarey@novell.com, bwhiteley@suse.de',
version='0.1.0',
description='Base Providers',
url='http://pywbem.sf.net/',
py_modules=['OMC_InitdService',
'OMC_LogicalFile',
'OMC_OperatingSystem',
'OMC_UnitaryComputerSystem',
'OMC_UnixProcess'],
#options={'install':{'--install-lib':'/usr/lib/pycim'}},
)