Run update-copyright.py.
authorW. Trevor King <wking@drexel.edu>
Wed, 21 Mar 2012 16:53:30 +0000 (12:53 -0400)
committerW. Trevor King <wking@drexel.edu>
Wed, 21 Mar 2012 16:53:30 +0000 (12:53 -0400)
bin/send-pgp-mime.py
pgp_mime.py
setup.py

index a499754163f8045d8874100ca82ea4ca223b3289..14ae501d292214cbecebc5654d3cd9607ec751da 100755 (executable)
@@ -1,5 +1,19 @@
 #!/usr/bin/env python3
-# Copyright
+# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+#
+# This file is part of pgp-mime.
+#
+# pgp-mime 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.
+#
+# pgp-mime 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
+# pgp-mime.  If not, see <http://www.gnu.org/licenses/>.
 
 """Scriptable PGP MIME email using ``gpg``.
 
index 32ecf8576851ceffdc5e30cfe73e491f1b0f8cd5..66ff366383bdffa9671d4a9bb9ea26dd5698d40f 100644 (file)
@@ -1,19 +1,19 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2009 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
 #
-# 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 file is part of pgp-mime.
 #
-# 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.
+# pgp-mime 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.
 #
-# 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.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# pgp-mime 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
+# pgp-mime.  If not, see <http://www.gnu.org/licenses/>.
 """Python module and for constructing and sending pgp/mime email.
 
 Mostly uses subprocess to call ``gpg`` and sends mail using either
index 9f441651f858b90852de212dec898b84f5e169fb..d9eb313e09cc95af926f36c05f630d7378089e0d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,18 @@
-# Copyright (C) 2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+#
+# This file is part of pgp-mime.
+#
+# pgp-mime 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.
+#
+# pgp-mime 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
+# pgp-mime.  If not, see <http://www.gnu.org/licenses/>.
 
 "Tools for dealing with Pretty Good Privacy (PGP) and email."