1 |
#!/usr/bin/env python |
2 |
|
3 |
from distutils.core import setup, Extension |
4 |
|
5 |
setup( name = "statgrab", |
6 |
version = "0.8.1", |
7 |
description = "Python bindings for libstatgrab", |
8 |
author = "i-scream", |
9 |
author_email = "dev@i-scream.org", |
10 |
url = "http://www.i-scream.org/libstatgrab", |
11 |
license = "GNU GPL v2 or later", |
12 |
ext_modules=[Extension( |
13 |
"statgrab", |
14 |
["statgrab.c"], |
15 |
libraries = ["statgrab", "kvm", "devstat"], |
16 |
include_dirs = ["/usr/local/include"], |
17 |
library_dirs = ["/usr/local/lib"], |
18 |
)], |
19 |
) |