-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 977 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 977 Bytes
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
[project]
name = "anker-solix-api"
version = "3.8.0"
description = "Python library for Anker Solix Power devices (Solarbank, Inverter, PPS etc.)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = [ "dependencies" ]
[project.urls]
"Homepage" = "https://github.com/thomluther/anker-solix-api"
"Bug Tracker" = "https://github.com/thomluther/anker-solix-api/issues"
"Discussions" = "https://github.com/thomluther/anker-solix-api/discussions"
[tool.isort]
profile="black"
[tool.pylint]
jobs=0
disable = [
"import-error",
"line-too-long",
"invalid-name",
"protected-access",
]
[tool.poetry.dependencies]
aiohttp = ">=3.14.3"
aiofiles = ">=25.1.0"
cryptography = ">=50.0.0"
paho-mqtt = ">=2.1.0"
python-dotenv = ">=1.2.1"
[tool.poetry]
requires-poetry = ">=2.1"
packages = [
{ include = "anker_solix_api", from = "src" }
]