diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-07-24 12:02:12 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-07-24 12:02:12 +0000 |
commit | c0c4e2446ffca88aed27726fd28f99470fb85d40 (patch) | |
tree | ebfc2270976db61f66f960caae96166bb0b50bbd /setup.py | |
parent | 4289505932068a0c071c7c9fb4655678394cb469 (diff) | |
download | python-dmidecode-c0c4e2446ffca88aed27726fd28f99470fb85d40.tar.gz python-dmidecode-c0c4e2446ffca88aed27726fd28f99470fb85d40.tar.xz python-dmidecode-c0c4e2446ffca88aed27726fd28f99470fb85d40.zip |
Some cleaning, crash in interactive mode on dmidecode.bios() still not fixed.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@13 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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" ], ) ] ) |