forked from signalkraft/myPyllant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.13 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
[project]
name = "myPyllant"
authors = [
{ name = "Philipp", email = "pd@signalkraft.com" },
]
description = "A Python library to interact with the API behind the myVAILLANT app"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.8.0",
"pydantic<1.11.0",
"python-dotenv>=1.0.1",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/signalkraft/myPyllant"
"Bug Tracker" = "https://github.com/signalkraft/myPyllant/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
addopts = "-n4 --cov=src"
asyncio_mode = "auto"
testpaths = [
"src/myPyllant/tests",
]
[tool.coverage.run]
omit = ["*/tests/*"]
[tool.mypy]
python_version = "3.10"
pretty = true
follow_imports = "silent"
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
[tool.ruff.lint.pycodestyle]
max-line-length = 80