mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 20:07:47 +03:00
Added pyupgrade utility with manual stage to pre-commit and run on all files. Ref: https://github.com/asottile/pyupgrade Closes: deluge-torrent/deluge#326
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
#
|
|
# Copyright (C) 2009 Andrew Resch <andrewresch@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__ = 'Blocklist'
|
|
__author__ = 'John Garland'
|
|
__author_email__ = 'johnnybg+deluge@gmail.com'
|
|
__version__ = '1.4'
|
|
__url__ = 'http://deluge-torrent.org'
|
|
__license__ = 'GPLv3'
|
|
__description__ = 'Download and import IP blocklists'
|
|
__long_description__ = __description__
|
|
__pkg_data__ = {'deluge_' + __plugin_name__.lower(): ['data/*']}
|
|
|
|
setup(
|
|
name=__plugin_name__,
|
|
version=__version__,
|
|
description=__description__,
|
|
author=__author__,
|
|
author_email=__author_email__,
|
|
url=__url__,
|
|
license=__license__,
|
|
zip_safe=False,
|
|
long_description=__long_description__,
|
|
packages=find_packages(),
|
|
package_data=__pkg_data__,
|
|
entry_points="""
|
|
[deluge.plugin.core]
|
|
%s = deluge_%s:CorePlugin
|
|
[deluge.plugin.gtk3ui]
|
|
%s = deluge_%s:GtkUIPlugin
|
|
[deluge.plugin.web]
|
|
%s = deluge_%s:WebUIPlugin
|
|
"""
|
|
% ((__plugin_name__, __plugin_name__.lower()) * 3),
|
|
)
|