summaryrefslogtreecommitdiffstats
path: root/src/setup.py
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2009-03-31 11:42:38 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2009-03-31 11:42:38 +0000
commitd7200d96d5b90bcd0013c84ec1b053acbcca86c9 (patch)
tree76b63b8b927bdbb544fa2de66747baa5cd3da058 /src/setup.py
parent37d1a8117cd212ee9e47bbd4225ba76dece7dad7 (diff)
downloadpython-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.tar.gz
python-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.tar.xz
python-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.zip
Reverting recent (pointless) change.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@180 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'src/setup.py')
-rw-r--r--src/setup.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/setup.py b/src/setup.py
new file mode 100644
index 0000000..b0999b5
--- /dev/null
+++ b/src/setup.py
@@ -0,0 +1,25 @@
+from distutils.core import setup, Extension
+
+setup(
+ name = "python-dmidecode",
+ version = "2.10.3",
+ description = "Python extension module for dmidecode",
+ author = "Nima Talebi",
+ author_email = "nima@autonomy.net.au",
+ url = "http://projects.autonomy.net.au/dmidecode/",
+ ext_modules = [
+ Extension(
+ "dmidecode",
+ sources = [
+ "src/dmidecodemodule.c",
+ "src/dmihelper.c",
+ "src/util.c",
+ "src/dmioem.c",
+ "src/dmidecode.c"
+ ],
+ library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ],
+ libraries = [ "util" ],
+ #libraries = [ "util", "efence" ],
+ )
+ ]
+)