-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.03 KB
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
[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 = "gdal"
version = "1.2.1"
description = ""
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.26.98"
linz-logger = "^0.11.0"
py-multihash = "^2.0.1"
shapely = "^2.0.1"
[tool.poetry.dev-dependencies]
black = "^23.1.0"
isort = "^5.12.0"
gitlint = "^0.19.1"
mypy = "^1.0"
pylint = "^2.17.1"
pre-commit = "^3.2.1"
mypy-boto3-s3 = "^1.26.99"
pytest = "^7.2.1"
pytest-dependency = "^0.5.1"
moto = "^4.1.6"
pytest-mock = "^3.8.2"