summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 01080a6..5e00cf7 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from distutils.core import setup, Extension
setup(
- name = "DMIDecode",
+ name = "dmidecode",
version = "1.0",
description = "A python module rewrite of dmidecode",
author = "Nima Talebi",
@@ -9,9 +9,10 @@ setup(
url = "http://projects.autonomy.net.au/dmidecode/",
ext_modules = [
Extension(
- "dmidecode", [ "dmidecodemodule.c", "util.c", "catsprintf.c", "dmioem.c", "biosdecode.c", "dmiopt.c", "dmidecode.c" ],
- library_dirs=[ "/home/nima/dev-room/projects/dmidecode" ],
- libraries=[ "util" ],
+ "dmidecode",
+ sources = [ "dmidecodemodule.c", "util.c", "catsprintf.c", "dmioem.c", "biosdecode.c", "dmiopt.c", "dmidecode.c" ],
+ library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ],
+ libraries = [ "util" ],
)
]
)