Peter Pentchev | b91fc93 | 2023-01-19 15:27:13 +0200 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: StorPool <support@storpool.com> |
| 2 | # SPDX-License-Identifier: BSD-2-Clause |
| 3 | |
| 4 | [build-system] |
| 5 | requires = ["setuptools >= 61", "wheel"] |
| 6 | build-backend = "setuptools.build_meta" |
| 7 | |
| 8 | [project] |
| 9 | name = "gifn_apply" |
| 10 | version = "0.1.0" |
| 11 | description = "Functional tests for the git-if-needed tool" |
Peter Pentchev | 096b843 | 2024-01-18 13:53:09 +0200 | [diff] [blame^] | 12 | readme = "README.md" |
Peter Pentchev | b91fc93 | 2023-01-19 15:27:13 +0200 | [diff] [blame] | 13 | requires-python = ">= 3.8" |
| 14 | |
| 15 | [[project.authors]] |
| 16 | name = "StorPool" |
| 17 | email = "support@storpool.com" |
| 18 | |
| 19 | [project.scripts] |
| 20 | gifn_apply = "gifn_apply.__main__:main" |
| 21 | |
| 22 | [tool.setuptools] |
| 23 | zip-safe = true |
Peter Pentchev | 096b843 | 2024-01-18 13:53:09 +0200 | [diff] [blame^] | 24 | package-dir = {"" = "src"} |
Peter Pentchev | b91fc93 | 2023-01-19 15:27:13 +0200 | [diff] [blame] | 25 | packages = ["gifn_apply"] |
| 26 | |
Peter Pentchev | b91fc93 | 2023-01-19 15:27:13 +0200 | [diff] [blame] | 27 | [tool.mypy] |
| 28 | strict = true |
| 29 | python_version = "3.8" |
| 30 | |
Peter Pentchev | b91fc93 | 2023-01-19 15:27:13 +0200 | [diff] [blame] | 31 | [tool.test-stages] |
Peter Pentchev | ac74679 | 2024-01-18 13:15:15 +0200 | [diff] [blame] | 32 | stages = ["@check and @quick and not @manual", "@check and not @manual", "@tests and not @manual"] |