blob: 1c0dd260349aac0266029e6a64a23e0c23a826c6 [file] [log] [blame]
Peter Pentchevb91fc932023-01-19 15:27:13 +02001# SPDX-FileCopyrightText: StorPool <support@storpool.com>
2# SPDX-License-Identifier: BSD-2-Clause
3
4[build-system]
5requires = ["setuptools >= 61", "wheel"]
6build-backend = "setuptools.build_meta"
7
8[project]
9name = "gifn_apply"
10version = "0.1.0"
11description = "Functional tests for the git-if-needed tool"
Peter Pentchev096b8432024-01-18 13:53:09 +020012readme = "README.md"
Peter Pentchevb91fc932023-01-19 15:27:13 +020013requires-python = ">= 3.8"
14
15[[project.authors]]
16name = "StorPool"
17email = "support@storpool.com"
18
19[project.scripts]
20gifn_apply = "gifn_apply.__main__:main"
21
22[tool.setuptools]
23zip-safe = true
Peter Pentchev096b8432024-01-18 13:53:09 +020024package-dir = {"" = "src"}
Peter Pentchevb91fc932023-01-19 15:27:13 +020025packages = ["gifn_apply"]
26
Peter Pentchevb91fc932023-01-19 15:27:13 +020027[tool.mypy]
28strict = true
29python_version = "3.8"
30
Peter Pentchevb91fc932023-01-19 15:27:13 +020031[tool.test-stages]
Peter Pentchevac746792024-01-18 13:15:15 +020032stages = ["@check and @quick and not @manual", "@check and not @manual", "@tests and not @manual"]