From b6c8767dcf37347a87d38ef5545e96815cd3f0b7 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Wed, 10 Jan 2007 14:22:32 -0800 Subject: [PATCH] Add copyright notice. Signed-off-by: Ira W. Snyder --- animesorter2.py | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/animesorter2.py b/animesorter2.py index 605b13b..c56ad2b 100755 --- a/animesorter2.py +++ b/animesorter2.py @@ -1,7 +1,34 @@ #!/usr/bin/env python +# vim: set ts=4 sts=4 sw=4 textwidth=92 expandtab: + +""" +The animesorter program + +This will sort arbitrary files into directories by regular expression. +""" + +__author__ = "Ira W. Snyder (devel@irasnyder.com)" +__copyright__ = "Copyright (c) 2006,2007 Ira W. Snyder (devel@irasnyder.com)" +__license__ = "GNU GPL v2 (or, at your option, any later version)" + +# animesorter2.py -- a regular expression file-sorting utility +# +# Copyright (C) 2006,2007 Ira W. Snyder (devel@irasnyder.com) +# +# This program 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 2 of the License, or +# (at your option) any later version. +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# Copyright: Ira W. Snyder (devel@irasnyder.com) -# License: GNU General Public License v2 (or at your option, any later version) import os import re -- 2.25.1