Project

General

Profile

Download (531 Bytes) Statistics
| Branch: | Tag: | Revision:

hydrilla-builder / pyproject.toml @ debian-debian

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