summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 25f3e98bfd0a1915d585f0de8736675577d9fd71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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", ["dmidecodemodule.c"], library_dirs=["/home/nima/dev-room/projects/dmidecode"], libraries=["util"]
    )
  ]
)