-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (53 loc) · 1.58 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
[tool.poetry]
name = "valetudo-map-parser"
version = "0.1.9.b4"
description = "A Python library to parse Valetudo map data returning a PIL Image object."
authors = ["Sandro Cantarella <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "valetudo_map_parser", from = "SCR"}]
[tool.poetry.urls]
"Homepage" = "https://github.com/sca075/Python-package-valetudo-map-parser"
"Repository" = "https://github.com/sca075/Python-package-valetudo-map-parser"
"Bug Tracker" = "https://github.com/sca075/Python-package-valetudo-map-parser/issues"
"Changelog" = "https://github.com/sca075/Python-package-valetudo-map-parser/releases"
[tool.poetry.dependencies]
python = ">=3.12"
numpy = ">=1.26.4"
Pillow = ">=10.3.0"
[poetry.group.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", "R0913", "R0914", "W0640"]
max-line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"