X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/6642c1c71c5c6ce6ef3401c8c9da84cf076b018b..861348cca153705d844f9e50358a2076ef8be295:/setup.py diff --git a/setup.py b/setup.py old mode 100755 new mode 100644 index 09bb42b..0d795ae --- a/setup.py +++ b/setup.py @@ -1,21 +1,25 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- + 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}, + mantainer='Łukasz Rekucki', + mantainer_email='lrekucki@gmail.com', + url='http://github.com/fnp/librarian', + packages=['librarian'], + package_data = {'librarian': ['xslt/*.xslt']}, + 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'], )