FanFicFare/makeplugin.py

54 lines
1.7 KiB
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright 2015, Jim Miller
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from glob import glob
from makezip import createZipFile
if __name__=="__main__":
filename="FanFicFare.zip"
exclude=['*.pyc','*~','*.xcf','*[0-9].png','*.po','*.pot','*default.mo','*Thumbs.db']
os.chdir('calibre-plugin')
files=['plugin-defaults.ini','plugin-example.ini','about.html',
'images','translations']
files.extend(glob('*.py'))
files.extend(glob('plugin-import-name-*.txt'))
# 'w' for overwrite
createZipFile("../"+filename,"w",
files,
exclude=exclude)
os.chdir('../included_dependencies')
files=['gif.py','bs4','chardet','html2text']
# calibre has it's own copies of these that precedence anyway:
# 'six.py','html5lib','webencodings'
# webencodings is only needed by versions of html5lib after 0.9x7
# 'a' for append
createZipFile("../"+filename,"a",
files,
exclude=exclude)
os.chdir('..')
# 'a' for append
files=['fanficfare']
createZipFile(filename,"a",
files,
exclude=exclude)