Files
st7735-python-pimoroni/library/setup.py
Phil Howard 3009ef94c3 Hopeful fix for spidev segfault issue #6
From continued testing up to 1.8 million simulated display updates it appears that either updating to spidev==3.4 or using xfer3 fixes the issue with a segfault after ~167000 updates.
2020-01-03 17:48:54 +00:00

24 lines
923 B
Python

from setuptools import setup, find_packages
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(name='ST7735',
version='0.0.3',
description='Library to control an ST7735 168x80 TFT LCD display.',
long_description=open('README.rst').read() + '\n' + open('CHANGELOG.txt').read(),
license='MIT',
author='Philip Howard',
author_email='phil@pimoroni.com',
classifiers=classifiers,
url='https://github.com/pimoroni/st7735-160x80-python/',
packages=find_packages(),
install_requires=['spidev>=3.4'])