53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[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 = [
|
|
"beautifulsoup4>=4.14.2",
|
|
"cloudscraper>=1.2.71",
|
|
"playwright>=1.55.0",
|
|
"regex>=2025.9.18",
|
|
"requests>=2.32.5",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build >= 0.9.5, <0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.bumpversion]
|
|
current_version = "0.0.0"
|
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\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",
|
|
]
|