calibre-tal/theanarchistlibrary_store/__init__.py

16 lines
649 B
Python
Raw Normal View History

__license__ = 'GPL 3'
2020-12-31 16:27:34 +00:00
__copyright__ = '2012, Ruben Pollan <meskio@sindominio.net>; 2020, ibu radempa <ibu@radempa.de>'
__docformat__ = 'restructuredtext en'
from calibre.customize import StoreBase
2020-12-31 16:27:34 +00:00
class TheAnarchistLibraryStore(StoreBase):
name = 'The Anarchist Library'
2020-12-31 16:27:34 +00:00
description = 'theanarchistlibrary.org is an archive focusing on anarchism, anarchist texts, and texts of interest to anarchists.'
author = 'Ruben Pollan; ibu radempa'
2021-01-01 13:02:26 +00:00
version = (1, 2, 1)
drm_free_only = True
formats = ['EPUB', 'PDF']
actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'