mirror of
https://github.com/noDRM/DeDRM_tools.git
synced 2024-11-05 21:46:10 +06:00
12 lines
373 B
Python
12 lines
373 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
#@@CALIBRE_COMPAT_CODE@@
|
||
|
|
||
|
PLUGIN_NAME = "DeDRM"
|
||
|
__version__ = '10.0.2'
|
||
|
|
||
|
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'
|