mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-28 12:17:37 +00:00
- remove extra space in files - add a MANIFEST.json to dummyplugin.picard.zip (and remove metadata from python file)
15 lines
316 B
Python
15 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
"""Dummy plugin for tests"""
|
|
|
|
PLUGIN_NAME = "Dummy plugin"
|
|
PLUGIN_AUTHOR = "Zas"
|
|
PLUGIN_DESCRIPTION = "Dummy plugin description"
|
|
PLUGIN_VERSION = "1.0"
|
|
PLUGIN_API_VERSIONS = ["2.0"]
|
|
PLUGIN_LICENSE = 'Dummy plugin license'
|
|
PLUGIN_LICENSE_URL = 'dummy.plugin.url'
|
|
|
|
|
|
class DummyPlugin:
|
|
pass
|