-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.4 KB
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
[tool.poetry]
name = "pycheckwatt"
version = "0.2.11"
description = "Read data from CheckWatts EnergyInBalance WEB API"
authors = ["Marcus Karlsson <macke.karlsson@gmail.com>", "Anders Yderborg <anders.yderborg@gmail.com>", "Daniel Nilsson <danielnilsson79@hotmail.com>"]
license = "MIT License"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["checkwatt", "eib", "battery"]
include = [
"README.md"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
aiohttp = "^3.9.1"
python-dateutil = "^2.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "~=8.4.0"
pytest-asyncio = "~=1.1.0"
pytest-mock = "~=3.14.0"
responses = "~=0.25.0"
aioresponses = "~=0.7.0"
black = "~=25.1.0"
flake8 = "~=7.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
markers = [
"unit: Unit tests that mock external calls",
"characterization: Tests that document current behavior"
]
addopts = [
"--strict-markers",
"--strict-config",
"-v",
"--tb=short"
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::pytest.PytestUnknownMarkWarning"
]