Various fixes

This commit is contained in:
Philip Howard
2013-04-07 11:06:20 +00:00
parent 9d4e714e4b
commit 97a4f5131e
8 changed files with 111 additions and 2 deletions

View File

@@ -31,14 +31,14 @@ _wiringpi2 = Extension(
setup(
name = 'wiringpi2',
version = '1.0.7',
version = '1.0.10',
author = "Philip Howard",
author_email = "phil@gadgetoid.com",
url = 'https://github.com/Gadgetoid/WiringPi2-Python/',
description = """A python interface to WiringPi 2.0 library which allows for
easily interfacing with the GPIO pins of the Raspberry Pi. Also supports
i2c and SPI""",
long_description=open('README.rst','rt').read(),
long_description=open('README').read(),
ext_modules = [ _wiringpi2 ],
py_modules = ["wiringpi2"],
install_requires=[],