Phil Howard | 4ca39a6 | 2016-03-09 12:31:47 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | from setuptools import setup, find_packages, Extension |
| 4 | |
| 5 | setup( |
| 6 | name = 'wiringpi2', |
| 7 | version = '2.32.1', |
| 8 | author = "Philip Howard", |
| 9 | author_email = "phil@gadgetoid.com", |
| 10 | url = 'https://github.com/WiringPi/WiringPi-Python/', |
| 11 | description = """A python interface to WiringPi 2.0 library which allows for |
| 12 | easily interfacing with the GPIO pins of the Raspberry Pi. Also supports |
| 13 | i2c and SPI""", |
| 14 | long_description=open('README.txt').read(), |
| 15 | install_requires=['wiringpi>=2.23.1'], |
| 16 | ) |