bump version

This commit is contained in:
hyugogirubato
2026-04-06 15:01:01 +02:00
parent 0ecf0f843b
commit 95472d4ac4
20 changed files with 2198 additions and 1461 deletions
+13 -8
View File
@@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cbz"
version = "3.4.5"
description = "CBZ simplifies creating, managing, and viewing comic book files in CBZ, CBR, and PDF formats, offering seamless packaging, metadata handling and built-in viewing capabilities."
version = "4.0.0"
description = "Modern Python library for creating, manipulating and viewing comics in CBZ, CBR and PDF formats."
license = "MIT"
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
readme = "README.md"
@@ -18,7 +18,7 @@ keywords = [
"ebooks",
"manga",
"comics",
"webtoons",
"webtoons"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
@@ -26,8 +26,14 @@ classifiers = [
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
@@ -40,15 +46,14 @@ include = [
"Changelog" = "https://github.com/hyugogirubato/cbz/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
python = ">=3.9,<4.0"
langcodes = ">=3.4.0"
Pillow = ">=10.4.0"
pypdf = ">=5.7.0"
rarfile = ">=4.2"
xmltodict = ">=0.14.2"
pillow-avif-plugin = { version = ">=1.5.2", optional = true, markers = "python_version >= '3.9'" }
pillow-jxl-plugin = { version = ">=1.3.4", optional = true, markers = "python_version >= '3.9'" }
pillow-avif-plugin = { version = ">=1.5.2", optional = true }
pillow-jxl-plugin = { version = ">=1.3.4", optional = true }
[tool.poetry.extras]
pillow = ["pillow-avif-plugin", "pillow-jxl-plugin"]
@@ -62,7 +67,7 @@ url = "https://pypi.org/simple/"
priority = "primary"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0,<9.0.0"
pytest = ">=7.4.0,<10.0.0"
pytest-cov = ">=5.0.0"
[tool.pytest.ini_options]