2 # -*- coding: utf-8 -*-
4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
9 from setuptools import setup, find_packages
11 def whole_tree(prefix, path):
13 for f in (f for f in os.listdir(os.path.join(prefix, path)) if not f[0]=='.'):
14 new_path = os.path.join(path, f)
15 if os.path.isdir(os.path.join(prefix, new_path)):
16 files.extend(whole_tree(prefix, new_path))
18 files.append(new_path)
25 description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
26 author="Marek Stępniowski",
27 author_email='marek@stepniowski.com',
28 maintainer='Radek Czajka',
29 maintainer_email='radoslaw.czajka@nowoczesnapolska.org.pl',
30 url='http://github.com/fnp/librarian',
31 packages=find_packages(),
33 'librarian': ['xslt/*.xslt', 'epub/*', 'html/*', 'mobi/*', 'pdf/*', 'fb2/*', 'fonts/*', 'res/*'] +
34 whole_tree(os.path.join(os.path.dirname(__file__), 'librarian'), 'font-optimizer'),
35 'librarian.formats.html': ['res/*'],
36 'librarian.formats.epub': ['res/*'],
38 include_package_data=True,
44 scripts=['scripts/book2html',
51 'scripts/bookfragments',
53 tests_require=['nose>=0.11', 'coverage>=3.0.1'],