v0.0.4: Fix Calibre Plugin index

This commit is contained in:
Florian Bach 2021-11-15 06:53:02 +01:00
parent bf6741e9a0
commit f9d1f4df74

View file

@ -19,14 +19,13 @@
# v0.0.1: First public version
# v0.0.2: Add support for Python2
# v0.0.3: Fix other FileTypePlugins
from calibre.customize import FileTypePlugin # type: ignore
__version__ = '0.0.3'
# v0.0.4: Fix Calibre Plugin index / updater
PLUGIN_NAME = "LCPL Input"
PLUGIN_VERSION_TUPLE = tuple([int(x) for x in __version__.split(".")])
PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
PLUGIN_VERSION_TUPLE = (0, 0, 4)
from calibre.customize import FileTypePlugin # type: ignore
__version__ = PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
# Ton of libraries