-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (37 loc) · 1002 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
47
[tool.nitpick]
style = ["github://MrP01/lint-me-now/nitpick-base-style.toml", "github://MrP01/lint-me-now/nitpick-python-style.toml"]
[tool.poetry]
name = "solmate-sdk"
version = "0.1.11"
description = "Software Development Kit for the EET SolMate"
authors = ["EET"]
license = "MIT"
readme = "README.md"
packages = [{ include = "solmate_sdk" }]
repository = "https://github.com/eet-energy/solmate-sdk"
documentation = "https://solmate-sdk.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.8"
websockets = "11.0.3"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pylint = "^2.17.7"
isort = "^5.12.0"
Sphinx = "^5.3.0"
invoke = "^1.7.3"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.pylint]
[tool.pylint.REPORTS]
output-format = "colorized"
[tool.pylint.FORMAT]
max-line-length = 120
indent-after-paren = 4
[tool.bandit]
skips = ["B101"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"