root / pkpgcounter / trunk / pkpgpdls / version.py @ 463

Revision 463, 1.7 kB (checked in by jerome, 17 years ago)

Licensing terms changed to GNU GPL v3.0 or higher.
Removed old PCL3/4/5 parser which for a long time now wasn't used
anymore, and for which I was not the original copyright owner.
Version number bumped to 3.00alpha to reflect licensing changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Auth Date Id Rev
RevLine 
[190]1#
2# pkpgcounter : a generic Page Description Language parser
3#
[443]4# (c) 2003, 2004, 2005, 2006, 2007 Jerome Alet <alet@librelogiciel.com>
[463]5# This program is free software: you can redistribute it and/or modify
[190]6# it under the terms of the GNU General Public License as published by
[463]7# the Free Software Foundation, either version 3 of the License, or
[190]8# (at your option) any later version.
[463]9#
[190]10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
[463]16# along with this program.  If not, see <http://www.gnu.org/licenses/>.
[190]17#
18# $Id$
19#
20
[357]21"""This modules defines some important constants used in this software."""
22
23
[463]24__version__ = "3.00alpha"
[190]25
26__doc__ = """pkpgcounter : a generic Page Description Languages parser."""
27
[223]28__author__ = "Jerome Alet"
29__authoremail__ = "alet@librelogiciel.com"
[443]30__years__ = "2003, 2004, 2005, 2006, 2007"
[190]31
[463]32__gplblurb__ = """This program is free software: you can redistribute it and/or modify
[223]33it under the terms of the GNU General Public License as published by
[463]34the Free Software Foundation, either version 3 of the License, or
[223]35(at your option) any later version.
36
37This program is distributed in the hope that it will be useful,
38but WITHOUT ANY WARRANTY; without even the implied warranty of
39MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40GNU General Public License for more details.
41
42You should have received a copy of the GNU General Public License
[463]43along with this program.  If not, see <http://www.gnu.org/licenses/>."""
Note: See TracBrowser for help on using the browser.