diff options
| author | Nishanth Thomas <nthomas@redhat.com> | 2014-03-19 13:04:54 +0530 |
|---|---|---|
| committer | Bala.FA <barumuga@redhat.com> | 2014-04-29 10:14:32 +0530 |
| commit | 2c0d94f99c51b8ce13f901949e8283909450ff39 (patch) | |
| tree | fe861cad929b4bd4ecae0bc8c7f6ab6b63be24b0 /plugins/volcap/setup.py | |
| parent | 71cdd37492727d427fc0feae978ce60424f4b4df (diff) | |
plugins: Added the files for volume utilization and status plugins fixed few issues with code
fixed the pep8 issues
Change-Id: I2c2b32e7bbdc30a7b68acc1ce4e0468fd53a3050
Signed-off-by: Nishanth Thomas <nthomas@redhat.com>
Reviewed-on: https://cuckoo.blr.redhat.com:8443/42
Reviewed-by: Sahina Bose <sabose@redhat.com>
Tested-by: Sahina Bose <sabose@redhat.com>
Diffstat (limited to 'plugins/volcap/setup.py')
| -rw-r--r-- | plugins/volcap/setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/volcap/setup.py b/plugins/volcap/setup.py new file mode 100644 index 0000000..b37e090 --- /dev/null +++ b/plugins/volcap/setup.py @@ -0,0 +1,11 @@ +from distutils.core import setup, Extension + +module1 = Extension('capacity', + sources=['volCap.c'], libraries=['gfapi']) + +setup(name='capacity', + version='1.0', + description='Gets the volume capcity Utilization', + py_modules=['__init__'], + url='redhat.com', + ext_modules=[module1]) |
