2 # -*- coding: utf-8 -*-
3 from ez_setup import use_setuptools
6 from setuptools import setup, find_packages
12 description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
13 author='Marek Stepniowski',
14 author_email='marek@stepniowski.com',
15 url='http://redmine.nowoczesnapolska.org.pl/',
16 packages=find_packages(exclude=['tests']),
17 include_package_data=True,
18 install_requires=['lxml>=2.2'],
19 scripts=['scripts/book2html', 'scripts/book2txt', 'scripts/bookfragments', 'scripts/genslugs'],
20 tests_require=['nose>=0.11', 'coverage>=3.0.1'],