X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/b25c0f434cc50d48379fc8aa4c1bf5ea32212396..HEAD:/setup.py diff --git a/setup.py b/setup.py index bad0a3f..a11c86e 100755 --- a/setup.py +++ b/setup.py @@ -1,21 +1,60 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from ez_setup import use_setuptools -use_setuptools() - +# +# 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='1.3', + version='24.4.1', description='Converter from WolneLektury.pl XML-based language to XHTML, TXT and other formats', - author='Marek Stepniowski', + author="Marek Stępniowski", author_email='marek@stepniowski.com', - url='http://redmine.nowoczesnapolska.org.pl/', - packages=find_packages(exclude=['tests']), + maintainer='Radek Czajka', + maintainer_email='radekczajka@wolnelektury.pl', + 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'], - scripts=['scripts/book2html', 'scripts/book2txt', 'scripts/bookfragments', 'scripts/genslugs'], - tests_require=['nose>=0.11', 'coverage>=3.0.1'], + install_requires=[ + 'lxml>=2.2,<5.0', + 'Pillow>=9.1.0', + 'texml', + 'ebooklib', + 'aeneas', + 'mutagen', + 'qrcode', + 'requests', + 'fonttools', + ], + entry_points = { + "console_scripts": [ + "librarian=librarian.command_line:main" + ] + }, + scripts=['scripts/book2html', + 'scripts/book2txt', + 'scripts/book2pdf', + 'scripts/book2fb2', + 'scripts/book2cover', + ], )