mirror of
https://github.com/pimoroni/st7735-python.git
synced 2025-01-05 22:40:25 +03:00
24 lines
923 B
Python
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.4',
|
|
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'])
|