-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (57 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hubitat-ssl-certificate"
version = "0.1.0"
description = ""
authors = [
{ name="John L. Villalovos", email="john@sodarock.com" },
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.32.3",
]
[project.scripts]
hubitat-ssl-certificate = "hubitat_ssl_certificate.hubitat_ssl_certificate:main"
[project.urls]
# "Homepage" = "https://"
# "Bug Tracker" = "https://"
[tool.black]
skip_magic_trailing_comma = true
[tool.isort]
profile = "black"
multi_line_output = 3
order_by_type = true
force_sort_within_sections = true
[tool.mypy]
files = "."
strict = true
show_error_codes = true
[tool.pylint.messages_control]
max-line-length = 88
jobs = 0 # Use auto-detected number of multiple processes to speed up Pylint.
disable = [
"duplicate-code",
"fixme",
"invalid-name",
"logging-fstring-interpolation",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
"too-many-instance-attributes",
]
[tool.pytest.ini_options]
xfail_strict = true
# If 'log_cli=True' the following apply
# NOTE: If set 'log_cli_level' to 'DEBUG' will show a log of all of the HTTP requests
# made in functional tests.
log_cli_level = "INFO"
log_cli_format = "%(asctime)s.%(msecs)03d [%(levelname)8s] (%(filename)s:%(funcName)s:L%(lineno)s) %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"