|
| 1 | +# -*- coding: utf-8 -*- |
1 | 2 | #
|
2 | 3 | # setup.py
|
3 | 4 | #
|
4 |
| -# Copyright (C) 2013-2015 Stefan Talpalaru <[email protected]> |
| 5 | +# Copyright (C) 2013-2016 Stefan Talpalaru <[email protected]> |
5 | 6 | #
|
6 | 7 | # Basic plugin template created by:
|
7 | 8 | # Copyright (C) 2008 Martijn Voncken <[email protected]>
|
|
38 | 39 | # statement from all source files in the program, then also delete it here.
|
39 | 40 | #
|
40 | 41 |
|
41 |
| -from setuptools import setup, find_packages |
| 42 | +from setuptools import setup |
42 | 43 |
|
43 | 44 | __plugin_name__ = "DefaultTrackers"
|
44 |
| -__author__ = "Stefan Talpalaru" |
| 45 | +__author__ = u"Ștefan Talpalaru" |
45 | 46 | __author_email__ = "[email protected]"
|
46 | 47 | __version__ = "0.1"
|
47 | 48 | __url__ = "https://github.com/stefantalpalaru/deluge-default-trackers"
|
48 | 49 | __license__ = "GPLv3"
|
49 |
| -__description__ = "Add a list of default trackers to all the torrents" |
| 50 | +__description__ = "Add a list of default trackers to all the public torrents" |
50 | 51 | __long_description__ = """
|
51 |
| -Create a list of default trackers that will be added to new torrents (and old |
52 |
| -ones after restarting Deluge). The plugin will not duplicate existing trackers |
53 |
| -and does not care how the torrent was added so it works perfectly fine with |
54 |
| -infohashes. |
| 52 | +Create a list of default trackers that will be added to new public torrents |
| 53 | +(and old ones after restarting Deluge). The plugin will not duplicate existing |
| 54 | +trackers and does not care how the torrent was added so it works perfectly fine |
| 55 | +with infohashes. |
55 | 56 |
|
56 |
| -Don't use this plugin if you have private torrents where the details are not |
| 57 | +Private torrents are excluded on purpose, because their metadata is not |
57 | 58 | supposed to reach public trackers.
|
58 | 59 | """
|
59 | 60 | __pkg_data__ = {__plugin_name__.lower(): ["data/*"]}
|
|
0 commit comments