2 # -*- coding: utf-8 -*-
 
   4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
 
   5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 
   7 from __future__ import unicode_literals
 
   9 from librarian.book2anything import Book2Anything, Option
 
  12 class Book2Epub(Book2Anything):
 
  18         Option('-w', '--working-copy', dest='working-copy',
 
  19                 action='store_true', default=False,
 
  20                 help='mark the output as a working copy')
 
  23         Option('-t', '--html-toc',
 
  24                 action='store_true', dest='html_toc', default=False,
 
  25                 help='with inline html toc')
 
  29 if __name__ == '__main__':