Translated README.
[librarian.git] / setup.py
old mode 100755 (executable)
new mode 100644 (file)
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'],
 )