X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/e316fc14bef26f958937aec0e6854b61f71a3b34..09dded3d8606e8e4406fffcf477ceb4a1c97fee2:/setup.py diff --git a/setup.py b/setup.py index 952bf0c..db2551a 100644 --- a/setup.py +++ b/setup.py @@ -4,23 +4,39 @@ # This file is part of Librarian, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # +import os +import os.path from distutils.core import setup +def whole_tree(prefix, path): + files = [] + for f in (f for f in os.listdir(os.path.join(prefix, path)) if not f[0]=='.'): + new_path = os.path.join(path, f) + if os.path.isdir(os.path.join(prefix, new_path)): + files.extend(whole_tree(prefix, new_path)) + else: + files.append(new_path) + return files + + setup( name='librarian', version='1.3', description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats', author="Marek Stępniowski", author_email='marek@stepniowski.com', - maintainer='Łukasz Rekucki', - maintainer_email='lrekucki@gmail.com', + maintainer='Radek Czajka', + maintainer_email='radek.czajka@gmail.com', url='http://github.com/fnp/librarian', packages=['librarian'], - package_data={'librarian': ['xslt/*.xslt', 'epub/*']}, + package_data={'librarian': ['xslt/*.xslt', 'epub/*', 'pdf/*', 'fonts/*'] + + whole_tree(os.path.join(os.path.dirname(__file__), 'librarian'), 'font-optimizer')}, include_package_data=True, install_requires=['lxml>=2.2'], scripts=['scripts/book2html', 'scripts/book2txt', + 'scripts/book2epub', + 'scripts/book2pdf', 'scripts/bookfragments', 'scripts/genslugs'], tests_require=['nose>=0.11', 'coverage>=3.0.1'],