waveshareteam-e-Paper/RaspberryPi_JetsonNano/python/setup.py
2021-03-31 01:21:30 -06:00

16 lines
308 B
Python

import sys
from setuptools import setup
setup(
name='waveshare-epd',
description='Waveshare e-Paper Display',
author='Waveshare',
package_dir={'': 'lib'},
packages=['waveshare_epd'],
install_requires=[
'RPi.GPIO',
'spidev',
'Pillow',
'numpy'
],
)