generated from linz/template-python-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (44 loc) · 940 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
43
44
45
46
47
48
49
50
51
[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 = "0.2.0"
description = ""
authors = [
"Blayne Chard <[email protected]>",
"Daniel Silk <[email protected]>",
"Paul Fouquet <[email protected]>",
"Alice Fage <[email protected]>",
"Megan Davidson <[email protected]>"
]
[tool.poetry.dependencies]
python = "^3.8.10"
boto3 = "^1.24.12"
linz-logger = "^0.6.0"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
gitlint = "^0.17.0"
mypy = "^0.961"
pylint = "^2.14.3"
pre-commit = "^2.19.0"
mypy-boto3-s3 = "^1.24.0"
pytest = "^7.1.2"