You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
424 B
14 lines
424 B
#!/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"])])
|