mirror of
https://github.com/pimoroni/st7735-python.git
synced 2025-01-05 22:40:25 +03:00
22 lines
826 B
Python
22 lines
826 B
Python
# Workaround for issue in Python 2.7.3
|
|
# See http://bugs.python.org/issue15881#msg170215
|
|
try:
|
|
import multiprocessing
|
|
except ImportError:
|
|
pass
|
|
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name = 'Adafruit_ILI9341',
|
|
version = '1.5.0',
|
|
author = 'Tony DiCola',
|
|
author_email = 'tdicola@adafruit.com',
|
|
description = 'Library to control an ILI9341 TFT LCD display.',
|
|
license = 'MIT',
|
|
url = 'https://github.com/adafruit/Adafruit_Python_ILI9341/',
|
|
dependency_links = ['https://github.com/adafruit/Adafruit_Python_GPIO/tarball/master#egg=Adafruit-GPIO-0.6.5'],
|
|
install_requires = ['Adafruit-GPIO>=0.6.5'],
|
|
packages = find_packages())
|