|
22 | 22 | import json
|
23 | 23 | import logging
|
24 | 24 |
|
| 25 | +import yaml |
| 26 | + |
25 | 27 | from ._version import __version__
|
26 | 28 | from .arxiv_latex_cleaner import merge_args_into_config
|
27 | 29 | from .arxiv_latex_cleaner import run_arxiv_cleaner
|
28 | 30 |
|
29 |
| -import yaml |
30 |
| - |
31 | 31 | PARSER = argparse.ArgumentParser(
|
32 | 32 | prog="arxiv_latex_cleaner@{0}".format(__version__),
|
33 |
| - description=("Clean the LaTeX code of your paper to submit to arXiv. " |
34 |
| - "Check the README for more information on the use."), |
| 33 | + description=( |
| 34 | + "Clean the LaTeX code of your paper to submit to arXiv. " |
| 35 | + "Check the README for more information on the use." |
| 36 | + ), |
35 | 37 | )
|
36 | 38 |
|
37 | 39 | PARSER.add_argument(
|
38 |
| - "input_folder", type=str, help="Input folder or zip archive containing the LaTeX code.") |
| 40 | + "input_folder", |
| 41 | + type=str, |
| 42 | + help="Input folder or zip archive containing the LaTeX code.", |
| 43 | +) |
39 | 44 |
|
40 | 45 | PARSER.add_argument(
|
41 | 46 | "--resize_images",
|
|
47 | 52 | "--im_size",
|
48 | 53 | default=500,
|
49 | 54 | type=int,
|
50 |
| - help=("Size of the output images (in pixels, longest side). Fine tune this " |
51 |
| - "to get as close to 10MB as possible."), |
| 55 | + help=( |
| 56 | + "Size of the output images (in pixels, longest side). Fine tune this " |
| 57 | + "to get as close to 10MB as possible." |
| 58 | + ), |
52 | 59 | )
|
53 | 60 |
|
54 | 61 | PARSER.add_argument(
|
|
68 | 75 | "--images_allowlist",
|
69 | 76 | default={},
|
70 | 77 | type=json.loads,
|
71 |
| - help=("Images (and PDFs) that won't be resized to the default resolution," |
72 |
| - "but the one provided here. Value is pixel for images, and dpi for" |
73 |
| - "PDFs, as in --im_size and --pdf_im_resolution, respectively. Format " |
74 |
| - "is a dictionary as: '{\"path/to/im.jpg\": 1000}'"), |
| 78 | + help=( |
| 79 | + "Images (and PDFs) that won't be resized to the default resolution," |
| 80 | + "but the one provided here. Value is pixel for images, and dpi for" |
| 81 | + "PDFs, as in --im_size and --pdf_im_resolution, respectively. Format " |
| 82 | + "is a dictionary as: '{\"path/to/im.jpg\": 1000}'" |
| 83 | + ), |
75 | 84 | )
|
76 | 85 |
|
77 | 86 | PARSER.add_argument(
|
|
91 | 100 | "and \\todo2{}, run the tool with `--commands_to_delete todo1 todo2`."
|
92 | 101 | "Please note that the positional argument `input_folder` cannot come "
|
93 | 102 | "immediately after `commands_to_delete`, as the parser does not have "
|
94 |
| - "any way to know if it's another command to delete."), |
| 103 | + "any way to know if it's another command to delete." |
| 104 | + ), |
95 | 105 | )
|
96 | 106 |
|
97 | 107 | PARSER.add_argument(
|
|
100 | 110 | default=[],
|
101 | 111 | required=False,
|
102 | 112 | help=(
|
103 |
| - "LaTeX commands that will be deleted but the text wrapped in the " |
104 |
| - "commands will be retained. Useful for commands that change text " |
105 |
| - "formats and colors, which you may want to remove but keep the " |
106 |
| - "text within. Usages are exactly the same as commands_to_delete. " |
107 |
| - "Note that if the commands listed here duplicate that after " |
108 |
| - "commands_to_delete, the default action will be retaining the wrapped text."), |
| 113 | + "LaTeX commands that will be deleted but the text wrapped in the" |
| 114 | + " commands will be retained. Useful for commands that change text" |
| 115 | + " formats and colors, which you may want to remove but keep the text" |
| 116 | + " within. Usages are exactly the same as commands_to_delete. Note that" |
| 117 | + " if the commands listed here duplicate that after commands_to_delete," |
| 118 | + " the default action will be retaining the wrapped text." |
| 119 | + ), |
109 | 120 | )
|
110 | 121 |
|
111 | 122 | PARSER.add_argument(
|
|
120 | 131 | "`--environments_to_delete note`. Please note that the positional "
|
121 | 132 | "argument `input_folder` cannot come immediately after "
|
122 | 133 | "`environments_to_delete`, as the parser does not have any way to "
|
123 |
| - "know if it's another environment to delete."), |
| 134 | + "know if it's another environment to delete." |
| 135 | + ), |
124 | 136 | )
|
125 | 137 |
|
126 | 138 | PARSER.add_argument(
|
127 | 139 | "--use_external_tikz",
|
128 | 140 | type=str,
|
129 |
| - help=("Folder (relative to input folder) containing externalized tikz " |
130 |
| - "figures in PDF format.")) |
| 141 | + help=( |
| 142 | + "Folder (relative to input folder) containing externalized tikz " |
| 143 | + "figures in PDF format." |
| 144 | + ), |
| 145 | +) |
131 | 146 |
|
132 | 147 | PARSER.add_argument(
|
133 | 148 | "--svg_inkscape",
|
|
143 | 158 | "input folder), but a different path (relative to the input folder) "
|
144 | 159 | "can be provided in case a different `inkscapepath` was set when "
|
145 | 160 | "loading the `svg` package."
|
146 |
| - ) |
| 161 | + ), |
147 | 162 | )
|
148 | 163 |
|
149 | 164 | PARSER.add_argument(
|
150 | 165 | "--config",
|
151 | 166 | type=str,
|
152 |
| - help=("Read settings from `.yaml` config file. If command line arguments " |
153 |
| - "are provided additionally, the config file parameters are updated " |
154 |
| - "with the command line parameters."), |
| 167 | + help=( |
| 168 | + "Read settings from `.yaml` config file. If command line arguments " |
| 169 | + "are provided additionally, the config file parameters are updated " |
| 170 | + "with the command line parameters." |
| 171 | + ), |
155 | 172 | required=False,
|
156 | 173 | )
|
157 | 174 |
|
|
0 commit comments