summaryrefslogtreecommitdiffstats
path: root/DeDRM_plugin/__version.py
blob: e83b3a41b9d39d8a3277fef57091d3576fab20f4 (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.9'

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'