forked from pimoroni/st7789-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (20 loc) · 937 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
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='RPI-ST7789',
version='0.0.4a',
description='Library to control an ST7789 240*240 TFT LCD display.',
long_description=open('README.md').read() + '\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
license='MIT',
author='Russell bayley',
author_email='[email protected]',
classifiers=classifiers,
url='https://github.com/rusconi/Rpi-ST7789',
packages=find_packages())