[project] name = "bibapi" version = "0.1.0" description = "Add your description here" readme = "README.md" authors = [ { name = "WorldTeacher", email = "coding_contact@pm.me" } ] requires-python = ">=3.13" dependencies = [ "regex>=2025.9.18", ] [project.optional-dependencies] # SRU API feature: for accessing library catalogs via SRU protocol sru = [ "requests>=2.32.5", ] # Catalogue feature: web scraping local library catalog catalogue = [ "requests>=2.32.5", "beautifulsoup4>=4.12.0", ] # Install all features all = [ "bibapi[sru,catalogue]", ] [build-system] requires = ["uv_build >= 0.9.5, <0.10.0"] build-backend = "uv_build" [tool.bumpversion] current_version = "0.0.0" 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 = [] [dependency-groups] test = [ "types-pysocks>=1.7.1.20251001", "types-regex>=2025.9.18.20250921", "types-requests>=2.32.4.20250913", "mypy>=1.18.2", "pytest>=8.4.2", "pytest-cov>=7.0.0", ]