|
Revision 5600, 424 bytes
(checked in by khali, 3 years ago)
|
|
Update maintainer address.
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 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="linux-i2c@vger.kernel.org", |
|---|
| 12 | license="GPLv2", |
|---|
| 13 | url="http://lm-sensors.org/", |
|---|
| 14 | ext_modules=[Extension("smbus", ["smbusmodule.c"])]) |
|---|