-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (57 loc) · 1.22 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.black]
line-length = 127
[tool.isort]
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
no_implicit_reexport = true
show_error_codes = true
strict_concatenate = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.poetry]
authors = [
"Bill Nelson <bmnelson@linz.govt.nz>",
"Blayne Chard <bchard@linz.govt.nz>",
"Sandro Santilli <strk@kbt.io>",
"Simon Planzer <splanzer@linz.govt.nz>",
"Victor Engmark <vengmark@linz.govt.nz>",
]
description = ""
name = "qgis-plugin-repository"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
blinker = "*"
boto3 = "*"
flask = "*"
pynamodb = "*"
python = "^3.10"
structlog = "*"
ulid-py = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
boto3-stubs = "*"
gitlint = "*"
isort = "*"
mypy = "*"
pre-commit = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
requests = "*"
shellcheck-py = "*"
types-colorama = "*"
types-pygments = "*"
types-requests = "*"
types-setuptools = "*"