21 lines
396 B
TOML
21 lines
396 B
TOML
[project]
|
|
name = "waveshare-e6-image-processor"
|
|
version = "0.1.0"
|
|
description = "Process images for Waveshare E6 display"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = ["numpy>=2.0", "pillow>=12.1.1"]
|
|
|
|
[dependency-groups]
|
|
dev = ["ruff"]
|
|
|
|
[tool.ruff]
|
|
line-length = 180
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "single"
|