-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.84 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
72
[tool.poetry]
name = "vacuum-map-parser-ijai"
# The version is set by GH action on release
version = "0.0.0"
license = "Apache-2.0"
description = "Functionalities for Ijai vacuum map parsing"
readme = "README.md"
authors = ["Alexander Vassilyevsky <[email protected]>"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.11",
"Topic :: Home Automation",
]
packages = [
{ include = "vacuum_map_parser_ijai", from = "src" },
]
[tool.poetry.urls]
"Homepage" = "https://github.com/Tarh-76/Python-package-vacuum-map-parser-ijai"
"Repository" = "https://github.com/Tarh-76/Python-package-vacuum-map-parser-ijai"
"Bug Tracker" = "https://github.com/Tarh-76/Python-package-vacuum-map-parser-ijai/issues"
"Changelog" = "https://github.com/Tarh-76/Python-package-vacuum-map-parser-ijai/releases"
[tool.poetry.dependencies]
python = "^3.11"
Pillow = "*"
vacuum-map-parser-base = "0.1.2"
[tool.poetry.dev-dependencies]
black = "*"
mypy = "*"
ruff = "*"
isort = "*"
pylint = "*"
types-Pillow = "*"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.mypy]
platform = "linux"
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
no_implicit_reexport = true
strict_optional = true
warn_incomplete_stub = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pylint]
disable = ["C0103", "C0116", "R0902", "R0903", "R0912", "R0913", "R0914", "R0915", "W0640"]
max-line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"