summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-07-01 06:01:21 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-07-01 06:01:21 +0000
commiteb7958574ce98601433022d7d23343025c1e34b8 (patch)
tree2f9f0003beaff39d40a0f836ee035de330cea4de /setup.py
parent4f5bfc68e416a7d1e6264e43278fe9b9df684eed (diff)
downloadpython-dmidecode-eb7958574ce98601433022d7d23343025c1e34b8.tar.gz
python-dmidecode-eb7958574ce98601433022d7d23343025c1e34b8.tar.xz
python-dmidecode-eb7958574ce98601433022d7d23343025c1e34b8.zip
Project progressing along excellently. The python module is now functional and
has as many methods as the --type option takes. Next is to expand and harness the code around the `--string' option. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@3 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index ca193c0..25f3e98 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,15 @@
from distutils.core import setup, Extension
-setup(name = "DMIDecode",
- version = "1.0",
- ext_modules = [Extension("dmidecode", ["dmidecodemodule.c"])])
+setup(
+ name = "DMIDecode",
+ version = "1.0",
+ description = "A python module rewrite of dmidecode",
+ author = "Nima Talebi",
+ author_email = "nima@autonomy.net.au",
+ url = "http://projects/autonomy.net.au/dmidecode/",
+ ext_modules = [
+ Extension(
+ "dmidecode", ["dmidecodemodule.c"], library_dirs=["/home/nima/dev-room/projects/dmidecode"], libraries=["util"]
+ )
+ ]
+)