forked from pimoroni/st7735-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 817 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name='ST7735_pi5',
version='0.1.5',
description='A Python library to control the ST7735 display on a Raspberry Pi 5 using lgpio and spidev',
author='Christopher Zénon-Fall',
author_email='',
url='https://github.com/czenon1/ST7735_pi5',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'spidev',
'lgpio',
'Pillow'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
],
python_requires='>=3.6',
)