2021-10-06 18:23:41 +02:00
|
|
|
LICENSE = [
|
|
|
|
'Copyright © {year} {copyright_holders}',
|
|
|
|
'',
|
2022-01-15 15:16:59 +01:00
|
|
|
'This work may be distributed and/or modified',
|
|
|
|
'',
|
|
|
|
'1. under the LaTeX Project Public License and/or',
|
|
|
|
'2. under the GNU General Public License'
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'Distribution under conditions of the LaTeX Project Public License,',
|
|
|
|
'requires either version 1.3 of this license or (at your option)',
|
|
|
|
'any later version.',
|
|
|
|
'The latest version of this license is in',
|
|
|
|
' http://www.latex-project.org/lppl.txt',
|
|
|
|
'and version 1.3 or later is part of all distributions of LaTeX',
|
|
|
|
'version 2005/12/01 or later.',
|
|
|
|
'',
|
|
|
|
'This work has the LPPL maintenance status \`maintained\'.',
|
|
|
|
'',
|
|
|
|
'The Current Maintainer of this work is {copyright_holders}.',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'Distribution under the GNU General Public License requires either',
|
|
|
|
'version 3 or (at your opinion) any later version.'
|
2021-10-06 18:23:41 +02:00
|
|
|
]
|
2021-10-06 17:08:53 +02:00
|
|
|
|
2021-10-07 08:58:43 +02:00
|
|
|
PYTEX_INFO_TEXT = [
|
2021-10-08 16:12:48 +02:00
|
|
|
"This {latex_file_type} has been generated by PyTeX, available at",
|
2021-10-07 08:58:43 +02:00
|
|
|
" https://github.com/kesslermaximilian/PyTeX",
|
|
|
|
"and built from source file '{source_file}'.",
|
2021-10-07 18:00:41 +02:00
|
|
|
"It is STRONGLY DISCOURAGED to edit this source file directly, since local",
|
|
|
|
"changes will not be versioned by Git and overwritten by the next build. Always",
|
2021-10-08 16:12:48 +02:00
|
|
|
"edit the source file and build the {latex_file_type} again."
|
2021-10-07 08:58:43 +02:00
|
|
|
]
|
2021-10-22 14:45:32 +02:00
|
|
|
|
|
|
|
BUILD_DETAILS = [
|
2021-10-22 19:29:23 +02:00
|
|
|
"Build details:"
|
|
|
|
]
|
|
|
|
|
|
|
|
BUILD_TIME = [
|
|
|
|
" Build time: {build_time}"
|
|
|
|
]
|
|
|
|
|
|
|
|
PYTEX_VERSION = [
|
|
|
|
" PyTeX version: {pytex_version} (commit {pytex_commit_hash})"
|
|
|
|
]
|
|
|
|
|
|
|
|
SOURCE_CODE_VERSION = [
|
|
|
|
" Source code version: {packages_version} (commit {packages_commit_hash})"
|
2021-10-22 14:45:32 +02:00
|
|
|
]
|