* A rather disruptive change but for a few reasons such as easier to read,
easier type, keep consistent and javascript code uses single quotes.
* There are a few exceptions for the automated process:
* Any double quotes in comments
* Triple double quotes for docstrings
* Strings containing single quotes are left e.g. "they're"
* To deal with merge conflicts from feature branches it is best to follow
these steps for each commit:
* Create a patch: `git format-patch -1 <sha1>`
* Edit the patch and replace double quotes with single except those in
comments or strings containing an unescaped apostrophe.
* Check the patch `git apply --check <patchfile>` and fix any remaining
issues if it outputs an error.
* Apply the patch `git am < <patchfile>`
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2009 GazpachoKing <chase.sterling@gmail.com>
|
|
# Copyright (C) 2011 Pedro Algarvio <pedro@algarvio.me>
|
|
#
|
|
# Basic plugin template created by:
|
|
# Copyright (C) 2008 Martijn Voncken <mvoncken@gmail.com>
|
|
# Copyright (C) 2007-2009 Andrew Resch <andrewresch@gmail.com>
|
|
# Copyright (C) 2009 Damien Churchill <damoxc@gmail.com>
|
|
#
|
|
# This file is part of Deluge 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__ = 'AutoAdd'
|
|
__author__ = 'Chase Sterling, Pedro Algarvio'
|
|
__author_email__ = 'chase.sterling@gmail.com, pedro@algarvio.me'
|
|
__version__ = '1.05'
|
|
__url__ = 'http://dev.deluge-torrent.org/wiki/Plugins/AutoAdd'
|
|
__license__ = 'GPLv3'
|
|
__description__ = 'Monitors folders for .torrent files.'
|
|
__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]
|
|
%s = deluge.plugins.%s:CorePlugin
|
|
[deluge.plugin.gtkui]
|
|
%s = deluge.plugins.%s:GtkUIPlugin
|
|
[deluge.plugin.web]
|
|
%s = deluge.plugins.%s:WebUIPlugin
|
|
""" % ((__plugin_name__, __plugin_name__.lower()) * 3)
|
|
)
|