-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
42 lines (37 loc) · 874 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
[tool.poetry]
name = "otpauth-migration-decoder"
version = "1.0"
description = "Convert otpauth-migration to plain link"
authors = ["digitalduke <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
protobuf = "^4.22.1"
click = "^8.1.3"
pyzbar = "^0.1.9"
pillow = "^9.5.0"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
pytest = "*"
pytest-cov = "*"
tox = "*"
tox-poetry = "*"
mypy = "^0.910"
types-protobuf = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length = 120
indent = ' '
multi_line_output = 3
no_lines_before = "LOCALFOLDER"
use_parentheses = true
lines_after_imports = 2
skip_glob = ".tox,.direnv,*_pb2.py"
include_trailing_comma = true
case_sensitive = true
force_grid_wrap = 2
combine_as_imports = true
[tool.mypy]
exclude = "protobuf/"
ignore_missing_imports = true