root/i2c-tools/trunk/py-smbus/setup.py

Revision 5600, 424 bytes (checked in by khali, 3 years ago)

Update maintainer address.

Line 
1#!/usr/bin/env python
2
3from distutils.core import setup, Extension
4
5setup(  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"])])
Note: See TracBrowser for help on using the browser.