-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (32 loc) · 982 Bytes
/
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
[project]
name = "pydevice2mqtt"
description = '''
This project provides a simplified control of devices via MQTT.
Supports the Hasso auto configuration protocol
'''
license = {file = "LICENSE"}
version = "0.2.4"
readme = "README.md"
requires-python = ">=3.7"
authors = [{name="HighImp", email="AnyHighZ@gmail.com"}]
dependencies = [
"paho-mqtt",
"pyyaml"
]
keywords = ["hassio","mqtt","homeassistent","homeautomation"]
repository = "https://github.com/HighImp/pydevice2mqtt"
[project.scripts]
flit = "flit:main"
[project.optional-dependencies]
test = [
"pylint ~=2.14.0",
"pytest-cov ~=4.0.0",
"pytest-mock ~=3.10.0"
]
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 65"
[tool.coverage.run]
source = ["src"]