forked from bluerobotics/BlueOS-Extensions-Repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.26 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
# This file is used only for setting up CI. no deployment is done with it
[tool.poetry]
name = "blueos-extensions-repository"
version = "0.0.1"
description = "Blue Robotics BlueOS Extensions Repository"
authors = ["Blue Robotics <software@bluerobotics.com>"]
license = "MIT"
packages = [{include = "blueos_repository"}]
[tool.poetry.dependencies]
aiohttp = "3.7.4"
python = "^3.10"
semver = "^2.13.0"
[tool.poetry.dev-dependencies]
black = "22.3.0"
isort = "5.10.1"
mypy = "0.941"
pydantic = "1.9.0"
pylint = "2.14.5"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pylint]
[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
plugins = "pydantic.mypy"