2 # -*- coding: utf-8 -*-
3 from distutils.core import setup
4 from tests.utils import TestCommand
9 description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
10 author='Marek Stępniowski',
11 author_email='marek@stepniowski.com',
12 url='http://redmine.nowoczesnapolska.org.pl/',
13 packages=['librarian', 'tests'],
14 package_dir={'librarian': 'librarian', 'tests': 'tests'},
16 'librarian': ['*.xslt'],
17 'tests': ['files/dcparser/*.xml', 'files/erroneous/*.xml'],
19 scripts=['scripts/book2html', 'scripts/book2txt', 'scripts/bookfragments', 'scripts/genslugs'],
20 cmdclass={'test': TestCommand},