diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2009-03-31 11:37:58 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2009-03-31 11:37:58 +0000 |
commit | 37d1a8117cd212ee9e47bbd4225ba76dece7dad7 (patch) | |
tree | f5817d1780670702c0f92c32bd62de53d68b3d36 /src/setup-dbg.py | |
parent | 17cfe3a41998c075991a54a6deace28ba7744ed6 (diff) | |
download | python-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.tar.gz python-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.tar.xz python-dmidecode-37d1a8117cd212ee9e47bbd4225ba76dece7dad7.zip |
Preparing to migrate to GIT.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@179 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'src/setup-dbg.py')
-rw-r--r-- | src/setup-dbg.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/setup-dbg.py b/src/setup-dbg.py deleted file mode 100644 index 1a23240..0000000 --- a/src/setup-dbg.py +++ /dev/null @@ -1,25 +0,0 @@ -from distutils.core import setup, Extension - -setup( - name = "python-dmidecode-dbg", - 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" ], - ) - ] -) |