21 lines
498 B
TOML
21 lines
498 B
TOML
[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"]
|