It works!
Woot woot.
This commit is contained in:
12
setup.py
12
setup.py
@@ -16,7 +16,7 @@ from setuptools import find_packages, setup
|
||||
__plugin_name__ = 'SimpleExtractor'
|
||||
__author__ = 'Digitalhigh'
|
||||
__author_email__ = 'donate.to.digitalhigh@gmail.com'
|
||||
__version__ = '0.7'
|
||||
__version__ = '0.8'
|
||||
__url__ = 'github.com/d8ahazard/deluge-extractor'
|
||||
__license__ = 'GPLv3'
|
||||
__description__ = 'Extract files upon torrent completion'
|
||||
@@ -30,7 +30,7 @@ Windows support: .rar, .zip, .tar, .7z, .xz, .lzma
|
||||
|
||||
Note: Will not extract with 'Move Completed' enabled
|
||||
"""
|
||||
__pkg_data__ = {'deluge_' + __plugin_name__.lower(): ['data/*']}
|
||||
__pkg_data__ = {__plugin_name__.lower(): ['template/*', 'data/*']}
|
||||
|
||||
setup(
|
||||
name=__plugin_name__,
|
||||
@@ -41,15 +41,15 @@ setup(
|
||||
url=__url__,
|
||||
license=__license__,
|
||||
long_description=__long_description__ if __long_description__ else __description__,
|
||||
packages=find_packages(),
|
||||
packages=[__plugin_name__.lower()],
|
||||
package_data=__pkg_data__,
|
||||
entry_points="""
|
||||
[deluge.plugin.core]
|
||||
%s = deluge_%s:CorePlugin
|
||||
%s = %s:CorePlugin
|
||||
[deluge.plugin.gtk3ui]
|
||||
%s = deluge_%s:GtkUIPlugin
|
||||
%s = %s:GtkUIPlugin
|
||||
[deluge.plugin.web]
|
||||
%s = deluge_%s:WebUIPlugin
|
||||
%s = %s:WebUIPlugin
|
||||
"""
|
||||
% ((__plugin_name__, __plugin_name__.lower()) * 3),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user