blob: 41eaf4917fb095948befc61534237cf8efd7c068 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# SPDX-License-Identifier: CC0-1.0
# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
#
# Available under the terms of Creative Commons Zero v1.0 Universal.
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=44", "wheel", "setuptools_scm>=5.0", "babel"]
[tool.setuptools_scm]
write_to = "src/hydrilla/builder/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = [
"tests"
]
markers = [
"subprocess_run: define how mocked subprocess.run should behave"
]
|