#!/usr/bin/env python2 # -*- coding: utf-8 -*- # setup.py --- Setup script for calculate-ldap # Copyright 2010-2016 Mir Calculate. http://www.calculate-linux.org # 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 os import path from glob import glob import sys import distutils from distutils.core import setup from distutils.command.install_data import install_data import itertools icon_system_path = ['/usr/share/icons/Calculate/16x16/client-gui'] icon_path = 'data/images/' icon_names = ['console_ok.png', 'console_cancel.png'] data_files = list(itertools.product(icon_system_path, \ map (lambda x: [icon_path+x], icon_names))) data_files.append(('/usr/share/pixmaps',['data/calculate-console-online.png', 'data/calculate-console-offline.png', 'data/calculate-console-update.png', 'data/cl-console-gui-install.png'])) data_files.append(('/usr/share/applications', ['data/cl-console-gui-install.desktop', 'data/cl-console-gui-update.desktop', 'data/cl-console-gui-update-settings.desktop', 'data/cl-console-gui.desktop', 'data/cl-console-gui-settings.desktop'])) data_files.append(('/etc/xdg/autostart', ['data/cl-update-checker.desktop'])) data_files.append(('/usr/share/calculate/themes/install', ['data/install/conf','data/install/welcome.jpg', 'data/install/finish.jpg'])) for theme in ("gnome","hicolor"): for size in [16,22,32,24,48,64,72,96,128]: for iconname in ("console","install", "update"): data_files.append(('/usr/share/icons/%s/%dx%d/apps' %(theme,size,size), glob('data/%dx%d/calculate-%s.png' %(size,size,iconname)))) __version__ = "3.2.2" __app__ = "calculate-console-gui" packages = [ "calculate."+str('.'.join(root.split(os.sep)[1:])) for root, dirs, files in os.walk('pym/consolegui') if '__init__.py' in files ] setup( name = __app__, version = __version__, description = "GUI client for WSDL server", author = "Calculate Ltd.", author_email = "support@calculate.ru", url = "http://calculate-linux.org", license = "http://www.apache.org/licenses/LICENSE-2.0", data_files = data_files, package_dir = {'calculate.consolegui': "pym/consolegui"}, packages = packages, scripts = (glob('bin/*')), cmdclass={'install_data': install_data} )