43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[project]
|
|
name = "komsuite-nyaapy"
|
|
version = "0.1.3"
|
|
description = "A rewritten hard fork of the original NyaaPy library."
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"bencodepy>=0.9.5",
|
|
"httpx>=0.28.1",
|
|
"httpx-retries>=0.3.2",
|
|
"lxml>=5.3.1",
|
|
"regex>=2024.11.6",
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.bumpversion]
|
|
current_version = "0.1.3"
|
|
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 = []
|