From c0c4e2446ffca88aed27726fd28f99470fb85d40 Mon Sep 17 00:00:00 2001 From: nima Date: Thu, 24 Jul 2008 12:02:12 +0000 Subject: 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 --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'setup.py') 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" ], ) ] ) -- cgit