diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-01-04 08:57:25 +0100 |
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-01-04 08:57:25 +0100 |
| commit | 8ce494b17065c724187dd3f9faec1e419496f871 (patch) | |
| tree | fa0c7fb1296f30bfd0cdc241c7556cec8d1e8ba1 /raphodo/__about__.py | |
| parent | 18afe3e2ebdb10bbc542d79280344d9adf923d2f (diff) | |
| parent | eba0a9bd6f142cdb299cc070060723d00e81205f (diff) | |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'raphodo/__about__.py')
| -rw-r--r-- | raphodo/__about__.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/raphodo/__about__.py b/raphodo/__about__.py new file mode 100644 index 0000000..2657dd2 --- /dev/null +++ b/raphodo/__about__.py @@ -0,0 +1,38 @@ +# Copyright (C) 2016-2018 Damon Lynch <damonlynch@gmail.com> + +# This file is part of Rapid Photo Downloader. +# +# Rapid Photo Downloader is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Rapid Photo Downloader is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Rapid Photo Downloader. If not, +# see <http://www.gnu.org/licenses/>. + +# Directly modelled on Donald Stufft's readme_renderer code: +# https://github.com/pypa/readme_renderer/blob/master/readme_renderer/__about__.py + +__all__ = [ + '__title__', '__summary__', '__uri__', '__version__', '__author__', + '__email__', '__license__', '__copyright__', +] + +__title__ = 'rapid-photo-downloader' +__summary__ = 'Downloads, renames and backs up photos and videos from cameras, phones, ' \ +'memory cards and other devices' +__uri__ = 'http://www.damonlynch.net/rapid' + +__version__ = '0.9.7' + +__author__ = 'Damon Lynch' +__email__ = 'damonlynch@gmail.com' + +__license__ = 'GPL' +__copyright__ = 'Copyright 2007-2018 {}'.format(__author__) |
