blob: 80b60b47c471fd5e299972315be20feba0408976 [file] [log] [blame]
Phil Howard4ca39a62016-03-09 12:31:47 +00001#!/usr/bin/env python
2
3from setuptools import setup, find_packages, Extension
4
5setup(
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)