You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
821 B
19 lines
821 B
5 years ago
|
# Python wrapper for the rpi_ws281x library.
|
||
|
# Author: Tony DiCola (tony@tonydicola.com)
|
||
|
from ez_setup import use_setuptools
|
||
|
use_setuptools()
|
||
|
from setuptools import setup, find_packages, Extension
|
||
|
|
||
|
setup(name = 'rpi_ws281x',
|
||
|
version = '1.0.0',
|
||
|
author = 'Jeremy Garff',
|
||
|
author_email = 'jer@jers.net',
|
||
|
description = 'Userspace Raspberry Pi PWM library for WS281X LEDs.',
|
||
|
license = 'MIT',
|
||
|
url = 'https://github.com/jgarff/rpi_ws281x/',
|
||
|
py_modules = ['neopixel'],
|
||
|
ext_modules = [Extension('_rpi_ws281x',
|
||
|
sources=['rpi_ws281x.i'],
|
||
|
library_dirs=['../.'],
|
||
|
libraries=['ws2811', 'rt'])])
|