[go: up one dir, main page]

Menu

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

Download this file

32 lines (25 with data), 945 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/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
import os
from distutils.core import setup
manifest = os.path.dirname(os.path.abspath(__file__)) + '/MANIFEST'
if os.path.exists(manifest):
print 'removing existing MANIFEST file'
os.unlink(manifest)
setup(name='cmpi-pywbem-base',
author='Jon Carey, Bart Whiteley',
author_email='jcarey@novell.com, bwhiteley@suse.de',
version='0.2.0',
description='Base Providers',
url='http://pywbem.sf.net/',
py_modules=['OMC_InitdService',
'OMC_LogicalFile',
'OMC_OperatingSystem',
'OMC_ComputerSystem',
'OMC_UnixProcess',
'OMC_SyslogNG',
'OMC_TimeService',]
#options={'install':{'--install-lib':'/usr/lib/pycim'}},
)