-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# [project]
# name = "pvoutput"
# authors = [
# {name = "James Hodgkinson", email = "[email protected]"}
# ]
# classifiers = [
# "License :: OSI Approved :: MIT License",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
# "Operating System :: OS Independent",
# ]
# dependencies = [
# "requests",
# "aiohttp"
# ]
# keywords = [
# "api",
# "solar",
# "pvoutput",
# ]
# readme = "README.md"
[tool.poetry]
name = "pvoutput"
version = "0.0.12"
authors = ["James Hodgkinson <[email protected]>"]
description = "Interface to the PVOutput API"
homepage = "https://yaleman.github.io/pvoutput/"
license = "MIT"
readme = "README.md"
repository = "https://github.com/yaleman/pvoutput/"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.27.1"
aiohttp = "^3.8.1"
mkdocs = { version = "^1.3.0", extras = ["docs"] }
mkdocstrings = { version = ">=0.18.1,<0.27.0", extras = ["docs"] }
mkdocs-material = { version = ">=8.2.9,<10.0.0", extras = ["docs"] }
ruff = ">=0.5.1,<0.9.3"
[tool.poetry.dev-dependencies]
mypy = "^1.0"
black = "^24.1.0"
pytest = "^8.0.0"
types-requests = "^2.28.11"
aiofiles = "^24.1.0"
pylint-pytest = "^1.1.2"
pytest-asyncio = "^0.24.0"
requests-mock = "^1.10.0"
types-aiofiles = "^24.1.0"
mkdocstrings-python = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.MASTER]
load-plugins = "pylint_pytest"
max-line-length = 200
disable = "W0511,R0801"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 200