-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.16 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
47
48
49
50
51
52
[tool.poetry]
name = "homeassistant-mqtt-binding"
version = "3.0.0"
description = "Bindings to implement arbitrary homeassistant devices in python using mqtt as interface"
authors = ["Andreas Philipp"]
license = "MIT"
readme = "README.md"
repository = "https://gitlab.com/anphi/homeassistant-mqtt-binding"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Home Automation"
]
packages = [
{ include = "ha_mqtt" }
]
[tool.poetry.dependencies]
python = "^3.8"
paho-mqtt = "^2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
furo = "~2022.4.7"
myst-parser = "^0"
pylint = "^2"
wheel = "^0.38"
mypy = "^1"
[tool.pylint.master]
persistent = "n"
jobs = 0
load-plugins = "pylint.extensions.docparams"
max-line-length = 119
max-attributes = 20
max-args = 8
[tool.mypy]
disallow_untyped_defs = "true"
disallow_incomplete_defs = "true"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"