#!/usr/bin/env python # -*- coding: utf-8 -*- # # This file is part of Librarian, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from librarian.book2anything import Book2Anything, Option from librarian.formats.cover.wolnelektury import WLCover class Book2Cover(Book2Anything): format_cls = WLCover format_options = [ Option('-W', '--width', action='store', type='int', dest='width', default=None, help='Set width.'), Option('-H', '--height', action='store', type='int', dest='height', default=None, help='Set height.'), Option('-l', '--with-logo', dest='with_logo', action='store_true', default=False, help='Add WL logo in white box.'), ] if __name__ == '__main__': Book2Cover.run()