Remove legacy code for txt.
[librarian.git] / scripts / book2txt
diff --git a/scripts/book2txt b/scripts/book2txt
deleted file mode 100755 (executable)
index 1b4c0ef..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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.parser import WLDocument
-
-
-class Book2Txt(Book2Anything):
-    format_name = "TXT"
-    ext = "txt"
-    uses_cover = False
-    uses_provider = False
-    parser_args = [
-        Option('-i', '--ignore-dublin-core', dest='parse_dublincore', 
-                action='store_false', default=True,
-                help='don\'t try to parse dublin core metadata')
-    ]
-    transform_args = [
-        Option('-w', '--wrap', action='store', type='int', dest='wrapping', default=0,
-                help='set line wrap column')
-    ]
-    transform = WLDocument.as_text
-
-
-if __name__ == '__main__':
-    Book2Txt.run()