16 lines
308 B
Python
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'
|
|
],
|
|
)
|
|
|