torchgeo/pyproject.toml

41 строка
561 B
TOML
Исходник Обычный вид История

[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
2021-05-12 04:54:53 +03:00
[tool.black]
2021-06-18 00:05:26 +03:00
target-version = ["py36", "py37", "py38", "py39"]
2021-05-12 04:54:53 +03:00
exclude = '''
/(
# Data
2021-06-18 20:07:37 +03:00
| data/
2021-05-12 04:54:53 +03:00
# Spack
2021-06-18 20:07:37 +03:00
| \.spack-env/
2021-05-12 04:54:53 +03:00
# Python
2021-06-18 20:07:37 +03:00
| build/
| dist/
| \.cache/
| \.mypy_cache/
| \.pytest_cache/
| __pycache__/
| .*\.egg-info/
2021-05-12 04:54:53 +03:00
# Git
2021-06-18 20:07:37 +03:00
| \.git/
| \.github/
2021-05-12 04:54:53 +03:00
)/
'''
2021-06-24 19:02:23 +03:00
[tool.pytest.ini_options]
norecursedirs = [
"*.egg*",
".*",
"build",
"data",
"dist",
"docs",
"__pycache__",
]