setup fix
[librarian.git] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 #
7 from distutils.core import setup
8
9 setup(
10     name='librarian',
11     version='1.3',
12     description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
13     author="Marek Stępniowski",
14     author_email='marek@stepniowski.com',
15     maintainer='Łukasz Rekucki',
16     maintainer_email='lrekucki@gmail.com',
17     url='http://github.com/fnp/librarian',
18     packages=['librarian'],
19     package_data={'librarian': ['xslt/*.xslt', 'epub/*']},
20     include_package_data=True,
21     install_requires=['lxml>=2.2'],
22     scripts=['scripts/book2html',
23              'scripts/book2txt',
24              'scripts/bookfragments',
25              'scripts/genslugs'],
26     tests_require=['nose>=0.11', 'coverage>=3.0.1'],
27 )