-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·58 lines (54 loc) · 1.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
#
import os
import os.path
from setuptools import setup, find_packages
def whole_tree(prefix, path):
files = []
for f in (f for f in os.listdir(os.path.join(prefix, path)) if not f[0]=='.'):
new_path = os.path.join(path, f)
if os.path.isdir(os.path.join(prefix, new_path)):
files.extend(whole_tree(prefix, new_path))
else:
files.append(new_path)
return files
setup(
name='librarian',
version='24.9',
description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats',
author="Marek Stępniowski",
author_email='[email protected]',
maintainer='Radek Czajka',
maintainer_email='[email protected]',
url='http://github.com/fnp/librarian',
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={'librarian': ['xslt/*.xslt', 'pdf/*', 'fb2/*', 'fonts/*'] +
whole_tree(os.path.join(os.path.dirname(__file__), 'src/librarian'), 'res') +
whole_tree(os.path.join(os.path.dirname(__file__), 'src/librarian'), 'locale')},
include_package_data=True,
install_requires=[
'lxml>=2.2,<5.0',
'Pillow>=9.1.0',
'texml',
'ebooklib',
'mutagen',
'qrcode',
'requests',
'fonttools',
],
entry_points = {
"console_scripts": [
"librarian=librarian.command_line:main"
]
},
scripts=[
'scripts/book2pdf',
'scripts/book2fb2',
'scripts/book2cover',
],
)