Merge remote-tracking branch 'py314/py3.14-janeczku' into Develop

This commit is contained in:
Ozzie Isaacs
2026-05-09 10:24:58 +02:00
2 changed files with 8 additions and 5 deletions

View File

@@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent", "Operating System :: OS Independent",
] ]
keywords = [ keywords = [
@@ -40,7 +41,7 @@ dependencies = [
"tornado>=6.4.2,<6.6", "tornado>=6.4.2,<6.6",
"Wand>=0.4.4,<0.8.0", "Wand>=0.4.4,<0.8.0",
"unidecode>=0.04.19,<1.5.0", "unidecode>=0.04.19,<1.5.0",
"lxml>=4.9.1,<5.4.0", "lxml>=4.9.1,<6.1.0",
"flask-wtf>=0.14.2,<1.3.0", "flask-wtf>=0.14.2,<1.3.0",
"chardet>=3.0.0,<5.3.0", "chardet>=3.0.0,<5.3.0",
"netifaces-plus>=0.12.0,<0.13.0", "netifaces-plus>=0.12.0,<0.13.0",
@@ -118,12 +119,14 @@ kobo = [
] ]
[project.scripts] [project.scripts]
cps = "calibreweb:main" cps = "cps.main:main"
[tool.setuptools] [tool.setuptools]
include-package-data = true include-package-data = true
license-files = ["LICENSE"] license-files = ["LICENSE"]
[tool.setuptools.dynamic] [tool.setuptools.packages.find]
version = {attr = "calibreweb.cps.constants.STABLE_VERSION"} include = ["cps*"]
[tool.setuptools.dynamic]
version = {attr = "cps.constants.STABLE_VERSION"}

View File

@@ -12,7 +12,7 @@ SQLAlchemy>=1.3.0,<2.1.0
tornado>=6.4.2,<6.6 tornado>=6.4.2,<6.6
Wand>=0.4.4,<0.8.0 Wand>=0.4.4,<0.8.0
unidecode>=0.04.19,<1.5.0 unidecode>=0.04.19,<1.5.0
lxml>=4.9.1,<5.4.0 lxml>=4.9.1,<6.1.0
flask-wtf>=0.14.2,<1.3.0 flask-wtf>=0.14.2,<1.3.0
chardet>=3.0.0,<5.3.0 chardet>=3.0.0,<5.3.0
netifaces-plus>=0.12.0,<0.13.0 netifaces-plus>=0.12.0,<0.13.0