blob: d85c8083dd12d3c25dc11b97b4e05706ded9f25a [file] [log] [blame]
#!/usr/bin/env python
from distutils.core import setup, Extension
setup( name="smbus",
version="1.1",
description="Python bindings for Linux SMBus access through i2c-dev",
author="Mark M. Hoffman",
author_email="mhoffman@lightlink.com",
maintainer="Mark M. Hoffman",
maintainer_email="lm-sensors@lm-sensors.org",
license="GPLv2",
url="http://lm-sensors.org/",
ext_modules=[Extension("smbus", ["smbusmodule.c"])])