-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.31 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
# Copyright (C) 2024 azicen <[email protected]>
#
# Basic plugin template created by the Deluge Team.
#
# This file is part of PeerBanHelperAdapter and is licensed under MIT license, 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__ = 'PeerBanHelperAdapter'
__author__ = 'azicen'
__author_email__ = '[email protected]'
__version__ = '1.2.0'
__url__ = 'https://github.com/PBH-BTN/PBH-Adapter-Deluge'
__license__ = 'MIT license'
__description__ = 'PeerBanHelper Deluge Adapter Plugin.'
__long_description__ = """PeerBanHelper Deluge Adapter Plugin."""
__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__,
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:Gtk3UIPlugin
[deluge.plugin.web]
%s = deluge_%s:WebUIPlugin
""" % ((__plugin_name__, __plugin_name__.lower()) * 3)
)