forked from linz/topo-imagery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.12 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 127
[tool.isort]
line_length = 127
case_sensitive = true
profile = "black"
[tool.mypy]
show_error_codes = true
strict = true
disable_error_code = [
"import",
]
[[tool.mypy.overrides]]
module = [
"linz_logger",
]
ignore_missing_imports = true
[tool.poetry]
name = "topo-imagery"
version = "3.4.0"
description = "A collection of scripts for processing imagery"
authors = [
"Blayne Chard <bchard@linz.govt.nz>",
"Daniel Silk <dsilk@linz.govt.nz>",
"Paul Fouquet <pfouquet@linz.govt.nz>",
"Alice Fage <afage@linz.govt.nz>",
"Megan Davidson <mdavidson@linz.govt.nz>"
]
[tool.poetry.dependencies]
python = "^3.10.6"
boto3 = "^1.28.70"
linz-logger = "^0.11.0"
py-multihash = "^2.0.1"
shapely = "^2.0.1"
[tool.poetry.dev-dependencies]
black = "^23.11.0"
isort = "^5.12.0"
gitlint = "^0.19.1"
mypy = "^1.6"
pylint = "^3.0.2"
pre-commit = "^3.5.0"
mypy-boto3-s3 = "^1.28.55"
pytest = "^7.4.3"
pytest-dependency = "^0.5.1"
moto = "^4.2.6"
pytest-mock = "^3.12.0"
shellcheck-py = "*"
vulture = "^2.10"