ppsfleet-deluge/setup.py

44 lines
1.2 KiB
Python

# -*- coding: utf-8 -*-
# Copyright (C) 2020 BlackSponge <blacksponge@tuta.io>
#
# Basic plugin template created by the Deluge Team.
#
# This file is part of PPSFleet and is licensed under GNU GPL 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__ = 'PPSFleet'
__author__ = 'BlackSponge'
__author_email__ = 'blacksponge@tuta.io'
__url__ = ''
__license__ = 'GPLv3'
__description__ = ''
__long_description__ = """"""
__pkg_data__ = {'deluge_'+__plugin_name__.lower(): ['data/*']}
setup(
name=__plugin_name__,
description=__description__,
author=__author__,
author_email=__author_email__,
url=__url__,
license=__license__,
long_description=__long_description__,
packages=find_packages(),
package_data=__pkg_data__,
use_scm_version=True,
setup_requires=['setuptools_scm'],
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)
)