1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Don't load README.md as it contains non-ASCII characters.
Author: Alessio Treglia <alessio@debian.org>
Forwarded: no
---
setup.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
--- python-ebooklib.orig/setup.py
+++ python-ebooklib/setup.py
@@ -10,7 +10,12 @@ setup(
url = 'https://github.com/aerkalov/ebooklib',
license = 'GNU Affero General Public License',
description = 'Ebook library which can handle EPUB2/EPUB3 and Kindle format',
- long_description = open('README.md').read(),
+ long_description = '''EbookLib is a Python library for managing EPUB2/EPUB3 and Kindle files.
+It's capable of reading and writing EPUB files programmatically (Kindle support is under development).
+
+The API is designed to be as simple as possible, while at the same time making complex things possible too.
+It has support for covers, table of contents, spine, guide, metadata and etc.
+''',
keywords = ['ebook', 'epub', 'kindle'],
classifiers = [
"Development Status :: 4 - Beta",
|