|
Revision 4219, 424 bytes
(checked in by mmh, 2 years ago)
|
Python bindings to i2c-dev devices, supporting SMBus transactions.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
from distutils.core import setup, Extension |
|---|
| 4 |
|
|---|
| 5 |
setup( name="smbus", |
|---|
| 6 |
version="1.1", |
|---|
| 7 |
description="Python bindings for Linux SMBus access through i2c-dev", |
|---|
| 8 |
author="Mark M. Hoffman", |
|---|
| 9 |
author_email="mhoffman@lightlink.com", |
|---|
| 10 |
maintainer="Mark M. Hoffman", |
|---|
| 11 |
maintainer_email="lm-sensors@lm-sensors.org", |
|---|
| 12 |
license="GPLv2", |
|---|
| 13 |
url="http://lm-sensors.org/", |
|---|
| 14 |
ext_modules=[Extension("smbus", ["smbusmodule.c"])]) |
|---|