summaryrefslogtreecommitdiffstats
path: root/DeDRM_plugin/__version.py
blob: ab2ebb0f9626e933750443a6582da42d53390091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

#@@CALIBRE_COMPAT_CODE@@

PLUGIN_NAME = "DeDRM"
__version__ = '10.0.3'

PLUGIN_VERSION_TUPLE = tuple([int(x) for x in __version__.split(".")])
PLUGIN_VERSION = ".".join([str(x)for x in PLUGIN_VERSION_TUPLE])
# Include an html helpfile in the plugin's zipfile with the following name.
RESOURCE_NAME = PLUGIN_NAME + '_Help.htm'