Update gitmodules, readme, add setup.py

This commit is contained in:
Gal 2024-04-01 21:43:59 +02:00
parent 7bc31cf587
commit c0c00ec0fe
Signed by: gal
GPG Key ID: F035BC65003BC00B
3 changed files with 15 additions and 5 deletions

7
.gitmodules vendored
View File

@ -1,4 +1,3 @@
[submodule "lib/e-Paper"]
path = lib/e-Paper
url = https://github.com/waveshare/e-Paper.git
ignore = dirty
[submodule "e-Paper"]
path = e-Paper
url = https://github.com/waveshare/e-Paper.git

View File

@ -1,2 +1,2 @@
# eink display
# e-ink display

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
import sys, os
from setuptools import setup
dependencies = ['Pillow', 'RPi.GPIO', 'spidev']
setup(
name='eink-display',
description='E-ink display',
author='Gal',
install_requires=dependencies,
)