32 lines
598 B
TOML
32 lines
598 B
TOML
[tool.poetry]
|
|
name = "spotiplayer-pi"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Alessandro <alessandro.preiti@protonmail.com>"]
|
|
readme = "README.org"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
requests = "^2.32.3"
|
|
spidev = "^3.6"
|
|
numpy = "^2.2.1"
|
|
pillow = "^11.1.0"
|
|
pyyaml = "^6.0.2"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pre-commit = "^4.0.1"
|
|
ruff = "^0.9.0"
|
|
|
|
[tool.poetry.scripts]
|
|
run-tests = "unittest:main"
|
|
|
|
[tool.poetry.requires-plugins]
|
|
poetry-plugin-export = "^1.8"
|
|
poetry-plugin-shell = "^1.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|