-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
#
# -*- coding: utf-8 -*-#
# Copyright (C) 2016 Joel Elkins <[email protected]>
#
# Basic plugin template created by:
# Copyright (C) 2008 Martijn Voncken <[email protected]>
# Copyright (C) 2007-2009 Andrew Resch <[email protected]>
# Copyright (C) 2009 Damien Churchill <[email protected]>
# Copyright (C) 2010 Pedro Algarvio <[email protected]>
#
# This file is part of AutoReannounce 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 setup, find_packages
__plugin_name__ = "AutoReannounce"
__author__ = "Joel Elkins"
__author_email__ = "[email protected]"
__version__ = "0.1"
__url__ = ""
__license__ = "GPLv3"
__description__ = ""
__long_description__ = """"""
__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(),
namespace_packages=["deluge", "deluge.plugins"],
package_data=__pkg_data__,
entry_points="""
[deluge.plugin.core]
%(plugin_name)s = deluge.plugins.%(plugin_module)s:CorePlugin
[deluge.plugin.gtkui]
%(plugin_name)s = deluge.plugins.%(plugin_module)s:GtkUIPlugin
[deluge.plugin.web]
%(plugin_name)s = deluge.plugins.%(plugin_module)s:WebUIPlugin
""" % dict(plugin_name=__plugin_name__, plugin_module=__plugin_name__.lower())
)