bugfix
[librarian.git] / scripts / book2pdf
1 #!/usr/bin/env python
2 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from librarian.book2anything import Book2Anything, Option
6
7
8 class Book2Pdf(Book2Anything):
9     format_name = "PDF"
10     ext = "pdf"
11     uses_cover = True
12     uses_provider = True
13     transform_options = [
14         Option(
15             '-t', '--save-tex', dest='save_tex', metavar='FILE',
16             help='path to save the intermediary LaTeX file to'
17         ),
18         Option(
19             '-m', '--morefloats', dest='morefloats', metavar='old/new/none',
20             help='force morefloats in old (<1.0c), new (>=1.0c) or none'
21         ),
22         Option(
23             '-b', '--base-url', dest='base_url', metavar='URL',
24             help='specifies the base URL for relative image references'
25         ),
26     ]
27
28
29 if __name__ == '__main__':
30     Book2Pdf.run()