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 librarian.book2anything import Book2Anything, Option
 
   8 from librarian.formats.epub import EpubFormat
 
  11 class Book2Epub(Book2Anything):
 
  12     format_cls = EpubFormat
 
  14 if __name__ == '__main__':