-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (46 loc) · 1.38 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
48
49
50
51
52
53
[tool.poetry]
name = "pygoodwe"
version = "0.1.8"
description = "A command line tool and python library to query the GOODWE SEMS Portal APIs."
authors = ["James Hodgkinson <james@terminaloutcomes.com>"]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["goodwe", "solar", "api", "pygoodwe"]
readme = "README.md"
[tool.poetry.urls]
documentation = "https://yaleman.github.io/pygoodwe/"
homepage = "https://github.com/yaleman/pygoodwe"
repository = "https://github.com/yaleman/pygoodwe"
"bug tracker" = "https://github.com/yaleman/pygoodwe/issues"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.5.1,<0.8.1"
types-requests = "^2.28.11"
pytest = ">=7.1.3,<9.0.0"
mypy = "^1.0"
black = ">=23.1,<25.0"
pylint-pytest = "^1.1.2"
mkdocs = "^1.4.2"
mkdocs-material = "^9.0.2"
mkdocstrings = ">=0.20,<0.27"
mkdocstrings-python = ">=0.8,<1.12"
requests-mock = "^1.11.0"
validate-pyproject = ">=0.16,<0.24"
pytest-cov = "^5.0.0"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
[tool.pylint.MASTER]
disable = "W0511"
max-line-length = 150
load-plugins = "pylint_pytest"
[tool.ruff]
line-length = 150
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"