From 4289505932068a0c071c7c9fb4655678394cb469 Mon Sep 17 00:00:00 2001 From: nima Date: Thu, 24 Jul 2008 10:48:01 +0000 Subject: Now that code has been converted, work has started on "bios", and at the point of proof-of-concept. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@12 abc39116-655e-4be6-ad55-d661dc543056 --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 25f3e98..01080a6 100644 --- a/setup.py +++ b/setup.py @@ -6,10 +6,12 @@ setup( description = "A python module rewrite of dmidecode", author = "Nima Talebi", author_email = "nima@autonomy.net.au", - url = "http://projects/autonomy.net.au/dmidecode/", + url = "http://projects.autonomy.net.au/dmidecode/", ext_modules = [ Extension( - "dmidecode", ["dmidecodemodule.c"], library_dirs=["/home/nima/dev-room/projects/dmidecode"], libraries=["util"] + "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" ], ) ] ) -- cgit