[project] name = "komconfig" version = "0.2.3" description = "A small library providing a config class that provides settings data for the KomSuite" readme = "README.md" authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }] requires-python = ">=3.13" dependencies = [ "appdirs>=1.4.4", "omegaconf>=2.3.0", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [dependency-groups] dev = [ "pip>=25.1.1", ] test = [ "pytest>=8.3.4", "pytest-cov>=6.1.1", ] [tool.bumpversion] current_version = "0.2.3" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" replace = "{new_version}" regex = false ignore_missing_version = false ignore_missing_files = false tag = true sign_tags = false tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" allow_dirty = true commit = true message = "Bump version: {current_version} → {new_version}" moveable_tags = [] commit_args = "" setup_hooks = [] pre_commit_hooks = [] post_commit_hooks = []