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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#!/usr/bin/env python
#
# $Id$
#
import sys
from distutils.core import setup, Extension
# Windows
if sys.platform.lower().startswith("win"):
def get_winver():
maj,min = sys.getwindowsversion()[0:2]
return '0x0%s' % ((maj * 100) + min)
extensions = Extension('_psutil_mswindows',
sources=['psutil/_psutil_mswindows.c',
'psutil/arch/mswindows/process_info.c',
'psutil/arch/mswindows/security.c'],
define_macros=[('_WIN32_WINNT', get_winver()),
('_AVAIL_WINVER_', get_winver())],
libraries=["psapi", "kernel32", "advapi32", "shell32"]
)
# OS X
elif sys.platform.lower().startswith("darwin"):
extensions = Extension('_psutil_osx',
sources = ['psutil/_psutil_osx.c',
'psutil/arch/osx/process_info.c']
)
# FreeBSD
elif sys.platform.lower().startswith("freebsd"):
extensions = Extension('_psutil_bsd',
sources = ['psutil/_psutil_bsd.c',
'psutil/arch/bsd/process_info.c']
)
# Others
else:
extensions = None
def main():
setup_args = dict(
name='psutil',
version='0.1.2',
description='A process utilities module for Python',
long_description="""
psutil is a module providing convenience functions for managing processes in a
portable way by using Python.""",
keywords=['psutil', 'ps', 'top', 'process', 'utility'],
author='Giampaolo Rodola, Dave Daeschler, Jay Loden',
author_email='psutil-dev@googlegroups.com',
url='http://code.google.com/p/psutil/',
platforms='Platform Independent',
license='License :: OSI Approved :: BSD License',
packages=['psutil'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
],
)
if extensions is not None:
setup_args["ext_modules"] = [extensions]
setup(**setup_args)
if __name__ == '__main__':
main()
|