summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 056201f666ceb049e8bddba7f2e29e32829e8c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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", "util.c", "catsprintf.c", "dmioem.c", "dmiopt.c", "dmidecode.c" ],
      library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ],
      libraries    = [ "util" ],
      #libraries    = [ "util", "efence" ],
    )
  ]
)