c1027c57f47b75d9f303d45b588fb5f667844c19
[librarian.git] / scripts / book2epub
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 #
7 from __future__ import unicode_literals
8
9 from librarian.book2anything import Book2Anything, Option
10
11
12 class Book2Epub(Book2Anything):
13     format_name = "EPUB"
14     ext = "epub"
15     uses_cover = True
16     uses_provider = True
17     transform_flags = [
18         Option('-w', '--working-copy', dest='working-copy',
19                 action='store_true', default=False,
20                 help='mark the output as a working copy')
21         ]
22
23
24 if __name__ == '__main__':
25     Book2Epub.run()