about summary refs log tree commit diff
path: root/setup.py
blob: d1d4808df582dba99bfd041b29fd2a5d2ba17dea (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/env python3
"""
pip/pyinstaller build script for KCC.

Usage (Windows):
    py -3 setup.py build_binary

Usage (Linux/OS X):
    python3 setup.py build_binary or python3 setup.py build_binary --pyz
"""

import os
import sys
import shutil
import setuptools
import distutils.cmd
from distutils.command.build import build
from kindlecomicconverter import __version__

NAME = 'KindleComicConverter'
MAIN = 'kcc.py'
VERSION = __version__
OPTIONS = {}


class BuildBinaryCommand(distutils.cmd.Command):
    description = 'build binary release'
    user_options = [
        ('pyz', None, 'build PYZ package'),
    ]

    def initialize_options(self):
        # noinspection PyAttributeOutsideInit
        self.pyz = False

    def finalize_options(self):
        pass

    def run(self):
        if sys.platform == 'darwin':
            if os.path.isfile('Kindle Comic Converter.spec'):
                os.system('pyinstaller "Kindle Comic Converter.spec"')
            else:
                os.system('pyinstaller -y -F -i icons/comic2ebook.icns -n "Kindle Comic Converter" -w -s --noupx kcc.py')
            shutil.copy('other/osx/7za', 'dist/Kindle Comic Converter.app/Contents/Resources')
            shutil.copy('other/osx/unrar', 'dist/Kindle Comic Converter.app/Contents/Resources')
            shutil.copy('other/osx/Info.plist', 'dist/Kindle Comic Converter.app/Contents')
            shutil.copy('LICENSE.txt', 'dist/Kindle Comic Converter.app/Contents/Resources')
            shutil.copy('other/windows/Additional-LICENSE.txt', 'dist/Kindle Comic Converter.app/Contents/Resources')
            os.chmod('dist/Kindle Comic Converter.app/Contents/Resources/unrar', 0o777)
            os.chmod('dist/Kindle Comic Converter.app/Contents/Resources/7za', 0o777)
            if os.path.isfile('setup.sh'):
                os.system('./setup.sh')
            os.system('appdmg kcc.json dist/KindleComicConverter_osx_' + VERSION + '.dmg')
            exit(0)
        elif sys.platform == 'win32':
            if os.path.isfile('KCC.spec'):
                os.system('pyinstaller KCC.spec')
            else:
                os.system('pyinstaller -y -F -i icons\comic2ebook.ico -n KCC -w --noupx kcc.py')
            if os.path.isfile('setup.bat'):
                os.system('setup.bat')
            exit(0)
        else:
            if self.pyz:
                script = '''
                cp kcc.py __main__.py
                zip kcc.zip __main__.py kindlecomicconverter/*.py
                echo "#!/usr/bin/env python3" > kcc-bin
                cat kcc.zip >> kcc-bin
                chmod +x kcc-bin

                cp kcc-c2e.py __main__.py
                zip kcc-c2e.zip __main__.py kindlecomicconverter/*.py
                echo "#!/usr/bin/env python3" > kcc-c2e-bin
                cat kcc-c2e.zip >> kcc-c2e-bin
                chmod +x kcc-c2e-bin

                cp kcc-c2p.py __main__.py
                zip kcc-c2p.zip __main__.py kindlecomicconverter/*.py
                echo "#!/usr/bin/env python3" > kcc-c2p-bin
                cat kcc-c2p.zip >> kcc-c2p-bin
                chmod +x kcc-c2p-bin

                mkdir dist
                tar --xform s:^.*/:: \
                --xform s/LICENSE.txt/LICENSE/ \
                --xform s/kcc-bin/kcc/ \
                --xform s/kcc-c2p-bin/kcc-c2p/ \
                --xform s/kcc-c2e-bin/kcc-c2e/ \
                --xform s/comic2ebook/kcc/ \
                -czf dist/KindleComicConverter_linux_''' + VERSION + '''.tar.gz \
                kcc-bin kcc-c2e-bin kcc-c2p-bin LICENSE.txt README.md icons/comic2ebook.png
                rm __main__.py kcc.zip kcc-c2e.zip kcc-c2p.zip kcc-bin kcc-c2e-bin kcc-c2p-bin
                '''
                os.system("bash -c '%s'" % script)
                exit(0)
            else:
                os.system('docker run --rm -v ' + os.getcwd() + ':/app -e KCCVER=' + VERSION + ' acidweb/kcc')
                exit(0)


class BuildCommand(build):
    def run(self):
        os.makedirs('build/_scripts/', exist_ok=True)
        shutil.copyfile('kcc.py', 'build/_scripts/kcc')
        shutil.copyfile('kcc-c2e.py', 'build/_scripts/kcc-c2e')
        shutil.copyfile('kcc-c2p.py', 'build/_scripts/kcc-c2p')
        # noinspection PyUnusedLocal,PyShadowingNames
        OPTIONS = dict(
            scripts=['build/_scripts/kcc',
                     'build/_scripts/kcc-c2e',
                     'build/_scripts/kcc-c2p'],
            packages=['kcc'],
            install_requires=[
                'PyQt5>=5.6.0'
                'Pillow>=4.0.0',
                'psutil>=5.0.0',
                'python-slugify>=1.2.1',
                'raven>=6.0.0',
            ],
            zip_safe=False,
        )
        build.run(self)


setuptools.setup(
    cmdclass={
        'build_binary': BuildBinaryCommand,
        'build': BuildCommand,
    },
    name=NAME,
    version=VERSION,
    author='Ciro Mattia Gonano, Pawel Jastrzebski',
    author_email='ciromattia@gmail.com, pawelj@iosphe.re',
    description='Comic and Manga converter for e-book readers.',
    license='ISC License (ISCL)',
    keywords='kindle comic mobipocket mobi cbz cbr manga',
    url='http://github.com/ciromattia/kcc',
    **OPTIONS
)