forked from mac-zhou/midea-msmart
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (41 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "msmart-ng"
description = "A Python library for local control of Midea (and associated brands) smart air conditioners."
readme = "README.md"
authors = [
{name = "Tucker Kern", email = "tuckkern@gmail.com"},
]
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Home Automation"
]
dependencies = [
"httpx",
"pycryptodome"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/mill1000/midea-msmart"
Issues = "https://github.com/mill1000/midea-msmart/issues"
[project.scripts]
midea-discover = "msmart.cli:_legacy_main"
msmart-ng = "msmart.cli:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["msmart", "msmart.*"]
exclude = ["msmart.tests"]
[tool.setuptools_scm]