-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (52 loc) · 859 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
known_first_party = [
"PIL",
"geopandas",
"hydra",
"matplotlib",
"numpy",
"omegaconf",
"pandas",
"pl_bolts",
"pytorch_lightning",
"rioxarray",
"setuptools",
"shapely",
"skimage",
"torch",
"torchvision",
"tqdm",
"typing_extensions",
"xarray",
]
profile = "black"
line_length = 88
force_sort_within_sections = false
order_by_type = false
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -p no:warnings"
testpaths = [
"tests",
]