X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/6642c1c71c5c6ce6ef3401c8c9da84cf076b018b..21f76f412d83effaa5569ba4bb8f5d0742ed9d2f:/setup.py diff --git a/setup.py b/setup.py index 09bb42b..10abe6e 100755 --- a/setup.py +++ b/setup.py @@ -1,21 +1,51 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +# +# 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 -from tests.utils import TestCommand + +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.2.1', + version='1.6', description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats', - author='Marek Stępniowski', + author="Marek Stępniowski", author_email='marek@stepniowski.com', - url='http://redmine.nowoczesnapolska.org.pl/', - packages=['librarian', 'tests'], - package_dir={'librarian': 'librarian', 'tests': 'tests'}, - package_data={ - 'librarian': ['*.xslt'], - 'tests': ['files/dcparser/*.xml', 'files/erroneous/*.xml'], - }, - scripts=['scripts/book2html', 'scripts/book2txt', 'scripts/bookfragments', 'scripts/genslugs'], - cmdclass={'test': TestCommand}, + maintainer='Radek Czajka', + maintainer_email='radoslaw.czajka@nowoczesnapolska.org.pl', + url='http://github.com/fnp/librarian', + packages=['librarian', 'librarian.embeds'], + package_data={'librarian': ['xslt/*.xslt', 'epub/*', 'mobi/*', 'pdf/*', 'fb2/*', 'fonts/*'] + + whole_tree(os.path.join(os.path.dirname(__file__), 'librarian'), 'res') + + whole_tree(os.path.join(os.path.dirname(__file__), 'librarian'), 'font-optimizer')}, + include_package_data=True, + install_requires=[ + 'lxml>=2.2', + 'Pillow', + ], + scripts=['scripts/book2html', + 'scripts/book2txt', + 'scripts/book2epub', + 'scripts/book2mobi', + 'scripts/book2pdf', + 'scripts/book2fb2', + 'scripts/book2partner', + 'scripts/book2cover', + 'scripts/bookfragments', + 'scripts/genslugs'], + tests_require=['nose>=0.11', 'coverage>=3.0.1'], )