31 lines
549 B
TOML
31 lines
549 B
TOML
[tool.poetry]
|
|
name = "thermostat"
|
|
version = "0.3.0dev2"
|
|
description = ""
|
|
authors = ["Dustin C. Hatch <dustin@hatch.name>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
smbus2 = "^0.4.1"
|
|
"RPi.bme280" = "^0.2.3"
|
|
paho-mqtt = "^1.5.1"
|
|
DBussy = "^1.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^21.4b2"
|
|
flake8 = "^3.9.1"
|
|
pylint = "^2.8.2"
|
|
mypy = "^0.812"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
lines_after_imports = 2
|