You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
649 B
15 lines
649 B
__license__ = 'GPL 3' |
|
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>; 2020, ibu radempa <ibu@radempa.de>' |
|
__docformat__ = 'restructuredtext en' |
|
|
|
from calibre.customize import StoreBase |
|
|
|
|
|
class TheAnarchistLibraryStore(StoreBase): |
|
name = 'The Anarchist Library' |
|
description = 'theanarchistlibrary.org is an archive focusing on anarchism, anarchist texts, and texts of interest to anarchists.' |
|
author = 'Ruben Pollan; ibu radempa' |
|
version = (1, 2, 1) |
|
drm_free_only = True |
|
formats = ['EPUB', 'PDF'] |
|
actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'
|
|
|