mirror of
https://github.com/logos-storage/deluge.git
synced 2026-01-03 05:33:12 +00:00
Some new flake8 checkers were added so fix these new warnings and any issues uncovered. Use add-trailing-comma to fix missing trailing commas. It does not format it as well as I would like however it was fast to change and helps with git changes in future. Removed pylint from tox due to large number of warnings.
57 lines
1.8 KiB
Python
Executable File
57 lines
1.8 KiB
Python
Executable File
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2009-2010 Pedro Algarvio <pedro@algarvio.me>
|
|
#
|
|
# Basic plugin template created by:
|
|
# Copyright (C) 2008 Martijn Voncken <mvoncken@gmail.com>
|
|
# Copyright (C) 2007-2009 Andrew Resch <andrewresch@gmail.com>
|
|
# Copyright (C) 2009 Damien Churchill <damoxc@gmail.com>
|
|
#
|
|
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
|
|
# the additional special exception to link portions of this program with the OpenSSL library.
|
|
# See LICENSE for more details.
|
|
#
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
__plugin_name__ = 'Notifications'
|
|
__author__ = 'Pedro Algarvio'
|
|
__author_email__ = 'pedro@algarvio.me'
|
|
__version__ = '0.2'
|
|
__url__ = 'http://dev.deluge-torrent.org/'
|
|
__license__ = 'GPLv3'
|
|
__description__ = 'Plugin which provides notifications to Deluge.'
|
|
__long_description__ = """
|
|
Plugin which provides notifications to Deluge
|
|
|
|
Email, Popup, Blink and Sound notifications
|
|
|
|
The plugin also allows other plugins to make
|
|
use of itself for their own custom notifications
|
|
"""
|
|
__pkg_data__ = {'deluge.plugins.' + __plugin_name__.lower(): ['template/*', 'data/*']}
|
|
|
|
setup(
|
|
name=__plugin_name__,
|
|
version=__version__,
|
|
description=__description__,
|
|
author=__author__,
|
|
author_email=__author_email__,
|
|
url=__url__,
|
|
license=__license__,
|
|
long_description=__long_description__ if __long_description__ else __description__,
|
|
|
|
packages=find_packages(exclude=['**/test.py']),
|
|
namespace_packages=['deluge', 'deluge.plugins'],
|
|
package_data=__pkg_data__,
|
|
|
|
entry_points="""
|
|
[deluge.plugin.core]
|
|
%s = deluge.plugins.%s:CorePlugin
|
|
[deluge.plugin.gtkui]
|
|
%s = deluge.plugins.%s:GtkUIPlugin
|
|
[deluge.plugin.web]
|
|
%s = deluge.plugins.%s:WebUIPlugin
|
|
""" % ((__plugin_name__, __plugin_name__.lower()) * 3),
|
|
)
|