-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.38 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
53
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "meross2homie"
description = "Bridge between Meross IoT devices and home automation software compatible with Homie"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["MQTT", "IoT", "Meross", "Homie", "Mosquitto"]
license = { text = "LGPL-3.0-or-later" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Networking",
"Topic :: Software Development :: Object Brokering"
]
dependencies = [
"aiomqtt==2.0.0",
"meross_iot==0.4.6.2",
"aiohttp>=3.8.3,<4.0.0",
"isodate",
"yamldataclassconfig",
"dataclasses_json",
"loguru"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"mypy",
"types-paho-mqtt"
]
[project.scripts]
meross2homie = "meross2homie.main:main"
meross_mqtt_password = "meross2homie.main:calc_mqtt_password_main"
[tool.setuptools]
packages = ["meross2homie"]
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 120
target-version = ['py310', 'py311']