odroid-hc4-oled/setup.py

22 lines
630 B
Python

from setuptools import setup
setup(
name = 'odroid-hc4-oled',
version = '0.1',
description = 'ODROID LCD panel script',
author = 'Claudio Maradonna',
author_email = 'claudio@unitoo.pw',
license = 'BSD2',
install_requires = [
'luma.core >= 1.17.1',
'luma.oled >= 3.6.0',
'luma.lcd >= 2.5.0',
],
packages = [
'odroid_hc4_oled'
],
entry_points = {
'console_scripts' : [
'odroid_hc4_oled = odroid_hc4_oled.screen:main']
},
zip_safe = False)