-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
68 lines (60 loc) · 1.53 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
# This file is used only for setting up CI. no deployment is done with it
[project]
name = "blueos-extensions-repository"
version = "0.0.1"
description = "Blue Robotics BlueOS Extensions Repository"
authors = [
{name = "Blue Robotics", email = "[email protected]"},
]
license = {text = "MIT License"}
requires-python = ">=3.10"
dependencies = [
"aiocache==0.12.2",
"aiohttp==3.7.4",
"aiohttp-retry==2.8.3",
"beautifulsoup4==4.12.3",
"dataclass-wizard==0.22.3",
"json-five==1.1.1",
"markdown==3.6",
"pillow==10.4.0",
"semver>=2.13.0",
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"isort==5.10.1",
"mypy==0.981",
"pydantic==1.9.0",
"pylint==2.14.5",
"types-Markdown==3.6.0.20240316",
]
[tool.setuptools]
packages = [
"blueos_repository",
"blueos_repository.docker",
"blueos_repository.extension"
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pylint.master]
enable = "all"
disable = [
"line-too-long", # We already have this in black.
"locally-disabled", # We know what we are doing, necessary to load plugins in runtime
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"suppressed-message",
"wrong-import-position",
]
[tool.pylint.miscellaneous]
notes = ["FIXME"] # TODO is removed for internal development
[tool.mypy]
allow_untyped_decorators = true
disallow_subclassing_any = false
ignore_missing_imports = true
strict = true
warn_unreachable = true
warn_unused_ignores = false