forked from geoalchemy/geoalchemy2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 852 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
52
53
54
55
56
57
58
59
60
61
# SETUPTOOLS
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=3.4",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# BLACK
[tool.black]
line-length = 100
target-version = [
"py37",
"py38",
"py39",
"py310",
"py311",
"py312",
]
# PYDOCSTYLE
[tool.pydocstyle]
# ignore the following:
# - D107: Missing docstring in __init__
add-ignore = [
"D100",
"D101",
"D102",
"D103",
"D104",
"D105",
"D106",
"D107",
]
convention = "google"
# ISORT
[tool.isort]
profile = "black"
line_length = 100
force_single_line = true
# PYTEST
[tool.pytest.ini_options]
testpaths = [
"tests",
]
# MYPY
[[tool.mypy.overrides]]
module = [
"importlib.*",
"psycopg2cffi",
"rasterio",
"shapely",
"shapely.*"
]
ignore_missing_imports = true