-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.49 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2015 bendikro bro.devel+yarss2@gmail.com
#
# Based on work by:
# Copyright (C) 2009 Camillo Dell'mour <cdellmour@gmail.com>
#
# This file is part of YaRSS2 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__ = "YaRSS2"
__author__ = "Bro"
__author_email__ = "bro.devel+yarss2@gmail.com"
__version__ = "1.4.3"
__url__ = "http://dev.deluge-torrent.org/wiki/Plugins/YaRSS2"
__license__ = "GPLv3"
__description__ = "Yet another RSS 2"
__long_description__ = """
Yet another RSS 2, a simple RSS plugin for Deluge, based on
YaRSS written by Camillo Dell'mour <cdellmour@gmail.com>.
Tested with Deluge 1.3.12.
"""
__pkg_data__ = {__plugin_name__.lower(): ["data/*"]}
packages = find_packages(exclude=["yarss2.tests"])
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=packages,
package_data=__pkg_data__,
entry_points="""
[deluge.plugin.core]
%s = %s:CorePlugin
[deluge.plugin.gtkui]
%s = %s:GtkUIPlugin
[yarss2.libpaths]
include = yarss2.include
""" % ((__plugin_name__, __plugin_name__.lower()) * 2)
)