X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/6642c1c71c5c6ce6ef3401c8c9da84cf076b018b..01e9eecd54a34ddfc82f4092377f7b6cdcfadc31:/setup.py diff --git a/setup.py b/setup.py old mode 100755 new mode 100644 index 09bb42b..952bf0c --- a/setup.py +++ b/setup.py @@ -1,21 +1,27 @@ #!/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. +# from distutils.core import setup -from tests.utils import TestCommand setup( name='librarian', - version='1.2.1', + version='1.3', 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='Łukasz Rekucki', + maintainer_email='lrekucki@gmail.com', + url='http://github.com/fnp/librarian', + packages=['librarian'], + package_data={'librarian': ['xslt/*.xslt', 'epub/*']}, + include_package_data=True, + install_requires=['lxml>=2.2'], + scripts=['scripts/book2html', + 'scripts/book2txt', + 'scripts/bookfragments', + 'scripts/genslugs'], + tests_require=['nose>=0.11', 'coverage>=3.0.1'], )