-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (39 loc) · 954 Bytes
/
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
[tool.poetry]
name = "py-hpsu-monitor"
version = "0.4.0"
description = ""
authors = ["Felix Stürmer <[email protected]>"]
include = ["default-config.toml"]
[tool.poetry.dependencies]
python = "^3.7"
python-can = "^3.3.4"
typer = "^0.4.0"
tomlkit = "^0.10.1"
typing_extensions = "^4.0.1"
pydantic = "^1.9.0"
asyncio-mqtt = "^0.12.1"
loguru = "^0.5.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pylint = "^2.12.2"
black = "^21.12b0"
pytest-watch = "^4.2.0"
fabric = {version = "^2.7.0", optional = true}
pytest-asyncio = "^0.17.2"
mock = "^4.0.3"
flake8 = "^3.9.2"
isort = "^5.9.3"
[tool.poetry.extras]
deploy = ["fabric"]
[tool.poetry.scripts]
py-hpsu-monitor = "py_hpsu_monitor.cli:app"
[tool.isort]
profile = "black"
[tool.pyright]
typeCheckingMode = "strict"
reportMissingTypeStubs = "warning"
reportImportCycles = "warning"
useLibraryCodeForTypes = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"