generated from linz/template-python-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (53 loc) · 1.11 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
[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 = "6.0.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>",
"Victor Engmark <vengmark@linz.govt.nz>",
]
[tool.poetry.dependencies]
python = "~3.12.3"
boto3 = "*"
linz-logger = "*"
py-multihash = "*"
shapely = "*"
tifffile = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
gitlint = "*"
isort = "*"
moto = "*"
mypy = "*"
mypy-boto3-s3 = "*"
pre-commit = "*"
pylint = "*"
pytest = "*"
pytest-dependency = "*"
pytest-mock = "*"
pytest-subtests = "*"
shellcheck-py = "*"