-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
46 lines (39 loc) · 992 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
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tesla_powerwall"
version = "0.5.2"
description = "A simple API for accessing the Tesla Powerwall over your local network"
readme = "README.md"
license = { file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["api", "tesla", "powerwall", "tesla_powerwall"]
dependencies = [
"aiohttp>=3.7.4",
"urllib3>=1.26.18",
"orjson>=3.9.0",
"yarl>=1.15.0"
]
[project.urls]
Homepage = "https://github.com/jrester/tesla_powerwall"
[project.optional-dependencies]
test = [
"tox",
"pre-commit",
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[tool.coverage.run]
source = ["tesla_powerwall"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true