-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (38 loc) · 1.18 KB
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
[project]
name = "SolixBLE"
version = "3.8.0"
dependencies = [
"bleak>=0.19.0",
"cryptography",
"pycryptodome",
"bleak-retry-connector"
]
requires-python = ">= 3.11"
authors = [
{ name="Harvey Lelliott", email="harveylelliott@duck.com" },
]
description = "Python module for monitoring & controlling Bluetooth Anker Solix devices"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["Anker", "Solix", "BLE", "Home Assistant"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.11"
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D202", "D212", "D213", "G004"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
[project.urls]
Homepage = "https://github.com/flip-dots/SolixBLE"
Documentation = "https://solixble.readthedocs.io/en/latest/"
Repository = "https://github.com/flip-dots/SolixBLE"
Issues = "https://github.com/flip-dots/SolixBLE/issues"