c1af4e3aa707a6d418ccd828ac5b6f8de48c4dd8
[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 import os
8 import os.path
9 from setuptools import setup, find_packages
10
11
12 def whole_tree(prefix, path):
13     files = []
14     for f in (f for f in os.listdir(os.path.join(prefix, path)) if not f[0]=='.'):
15         new_path = os.path.join(path, f)
16         if os.path.isdir(os.path.join(prefix, new_path)):
17             files.extend(whole_tree(prefix, new_path))
18         else:
19             files.append(new_path)
20     return files
21
22
23 setup(
24     name='librarian',
25     version='1.13',
26     description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
27     author="Marek Stępniowski",
28     author_email='marek@stepniowski.com',
29     maintainer='Radek Czajka',
30     maintainer_email='radoslaw.czajka@nowoczesnapolska.org.pl',
31     url='http://github.com/fnp/librarian',
32     packages=find_packages(where="src"),
33     package_dir={"": "src"},
34     package_data={'librarian': ['xslt/*.xslt', 'xslt/*.xml', 'epub/*', 'pdf/*', 'fb2/*', 'fonts/*'] +
35                                 whole_tree(os.path.join(os.path.dirname(__file__), 'src/librarian'), 'res') +
36                                 whole_tree(os.path.join(os.path.dirname(__file__), 'src/librarian'), 'font-optimizer') +
37                                 whole_tree(os.path.join(os.path.dirname(__file__), 'src/librarian'), 'locale')},
38     include_package_data=True,
39     install_requires=[
40         'lxml>=2.2,<=4.3',
41         'Pillow',
42         'six',
43         'texml',
44         'ebooklib',
45         'aeneas',
46         'mutagen',
47     ],
48     entry_points = {
49         "console_scripts": [
50             "librarian=librarian.command_line:main"
51         ]
52     },
53     scripts=['scripts/book2html',
54              'scripts/book2txt',
55              'scripts/book2epub',
56              'scripts/book2mobi',
57              'scripts/book2pdf',
58              'scripts/book2fb2',
59              'scripts/book2partner',
60              'scripts/book2cover',
61              'scripts/bookfragments',
62              'scripts/genslugs'],
63 )