Initial scaffold: README, project layout, and headless-chromium render loop sketch
This commit is contained in:
commit
51f5ffcd66
8 changed files with 243 additions and 0 deletions
21
pyproject.toml
Normal file
21
pyproject.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[project]
|
||||
name = "inky-impression"
|
||||
version = "0.1.0"
|
||||
description = "Display server for a 13.3\" Pimoroni Inky Impression on a Raspberry Pi Zero 2 W"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"inky[example-depends]>=2.0.0",
|
||||
"Pillow>=10.0.0",
|
||||
"gpiod>=2.0.0",
|
||||
"gpiodevice>=0.0.5",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
inky-impression = "inky_impression.main:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=68"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue