-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.14 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "automation_engine"
version = "0.5.0"
description = "Automation Engine powered by MQTT"
authors = ["Dan Trickey <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/trickeydan/automation-engine"
homepage = "https://github.com/trickeydan/automation-engine"
documentation = "https://github.com/trickeydan/automation-engine"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8"
gmqtt = "^0.6.10"
pydantic = "^1.9.2"
tomli = { version = "^2.0.1", python = "<=3.10" }
hue2mqtt = { version = "^0.4.0", optional = true }
prometheus-client = "^0.14.1"
[tool.poetry.extras]
all = ["hue2mqtt"]
hue = ["hue2mqtt"]
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-commas = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-docstrings = "*"
flake8-isort = "*"
flake8-mutable = "*"
flake8-todo = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
rope = "*"
isort = {version = "*",extras = ["pyproject"]}
pytest-asyncio = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"