sleepywaves/pyproject.toml

30 lines
645 B
TOML
Raw Permalink Normal View History

2023-05-14 21:09:48 +02:00
[tool.poetry]
name = "sleepywaves"
version = "0.1.0"
description = ""
authors = ["Asaril <pub@asaril.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
2023-05-21 22:13:38 +02:00
spidev = { version = "^3.6", "platform" = "linux" }
mfrc522 = { version = "^0.0.7", platform = "linux" }
2023-05-14 21:09:48 +02:00
pydantic = "^1.10.7"
2023-05-15 03:26:18 +02:00
python-mpd2 = "^3.1.0"
2023-05-14 21:09:48 +02:00
2023-05-15 02:00:16 +02:00
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.3.0"
flake8 = "^6.0.0"
2023-05-21 22:13:38 +02:00
flake8-pyproject = "^1.2.3"
2023-05-15 02:00:16 +02:00
2023-05-14 21:09:48 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-05-21 22:13:38 +02:00
[tool.flake8]
max-line-length = 88
select = ['C', 'E', 'F', 'W', 'B', 'B950']
extend-ignore = ['E203', 'E501', 'W503']