[go: up one dir, main page]

Menu

[r472]: / pybase / trunk / setup.py  Maximize  Restore  History

Download this file

23 lines (18 with data), 708 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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'}},
)