| # SPDX-FileCopyrightText: StorPool <support@storpool.com> |
| # SPDX-License-Identifier: BSD-2-Clause |
| |
| [build-system] |
| requires = [ |
| "hatchling >= 1.8, < 2", |
| "hatch-requirements-txt >= 0.3, < 0.5", |
| ] |
| build-backend = "hatchling.build" |
| |
| [project] |
| name = "gifn_apply" |
| description = "Functional tests for the git-if-needed tool" |
| readme = "README.md" |
| requires-python = ">= 3.8" |
| dynamic = ["version"] |
| |
| [[project.authors]] |
| name = "StorPool" |
| email = "support@storpool.com" |
| |
| [project.scripts] |
| gifn_apply = "gifn_apply.__main__:main" |
| |
| [tool.hatch.build.targets.wheel] |
| packages = ["src/gifn_apply"] |
| |
| [tool.hatch.version] |
| path = "src/gifn_apply/defs.py" |
| |
| [tool.mypy] |
| strict = true |
| python_version = "3.8" |
| |
| [tool.test-stages] |
| stages = ["@check and @quick and not @manual", "@check and not @manual", "@tests and not @manual"] |