summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authornima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-17 07:20:56 +0000
committernima <nima@abc39116-655e-4be6-ad55-d661dc543056>2008-12-17 07:20:56 +0000
commit39378ee26e0d1d2ab4c76eed22514c6f986c5495 (patch)
tree3bb1c6a481d384dd41b085f7f3e06bafa802a7e4 /setup.py
parentb0103d72736fdf47760049dbf880a859b52c88fa (diff)
downloadpython-dmidecode-39378ee26e0d1d2ab4c76eed22514c6f986c5495.tar.gz
python-dmidecode-39378ee26e0d1d2ab4c76eed22514c6f986c5495.tar.xz
python-dmidecode-39378ee26e0d1d2ab4c76eed22514c6f986c5495.zip
Cleaning up source area, ready for debianizing, and rpm after that.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@108 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 2dd961e..0000000
--- a/setup.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from distutils.core import setup, Extension
-
-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",
- sources = [ "dmidecodemodule.c", "dmihelper.c", "util.c", "dmioem.c", "dmidecode.c" ],
- library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ],
- libraries = [ "util" ],
- #libraries = [ "util", "efence" ],
- )
- ]
-)