Translated README.
[librarian.git] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 from distutils.core import setup
5
6 setup(
7     name='librarian',
8     version='1.3',
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     mantainer='Łukasz Rekucki',
13     mantainer_email='lrekucki@gmail.com',
14     url='http://github.com/fnp/librarian',    
15     packages=['librarian'],
16     package_data = {'librarian': ['xslt/*.xslt']},
17     include_package_data=True,
18     install_requires=['lxml>=2.2'],
19     scripts=['scripts/book2html', 
20              'scripts/book2txt', 
21              'scripts/bookfragments', 
22              'scripts/genslugs'],
23              
24     tests_require=['nose>=0.11', 'coverage>=3.0.1'],
25 )