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
|
#!/usr/bin/python2
# -*- coding: utf-8 -*-
# Copyright (c) 2010, 2011, 2012, Sebastian Wiesner <lunaryorn@googlemail.com>
# All rights reserved.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from __future__ import print_function
import os
import sys
from codecs import open
sys.path.append(os.path.abspath('kdedistutils'))
try:
from kdedistutils import setup
from kdedistutils.kde import ThemeIcon, StandAloneIcon
except ImportError:
print('WARNING: kdedistutils not available, installation will be incomplete!')
print('Use the source distributions from http://pypi.python.org/pypi/synaptiks/')
print('or run "git submodule update --init --recursive" in your git clone.')
from setuptools import setup
ThemeIcon = lambda *args: None
StandAloneIcon = lambda *args: None
import synaptiks
requirements = ['pyudev>=0.6']
if sys.version_info[:2] < (2, 7):
requirements.append('argparse>=1.1')
with open('README.rst', encoding='utf-8') as stream:
long_description = stream.read()
setup(
name='synaptiks',
version=str(synaptiks.__version__),
url=str(synaptiks.WEBSITE_URL),
author='Sebastian Wiesner',
author_email='lunaryorn@googlemail.com',
description='A KDE touchpad configuration and management tool',
long_description=long_description,
platforms='X11',
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: KDE',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Desktop Environment :: K Desktop Environment (KDE)',
'Topic :: System :: Hardware',
'Topic :: Utilities',
],
packages=['synaptiks', 'synaptiks.x11', 'synaptiks.kde',
'synaptiks.kde.widgets', 'synaptiks.monitors',
'synaptiks._bindings'],
package_data={
'synaptiks.kde.widgets': ['ui/*.ui'],
},
entry_points={
'gui_scripts': ['synaptiks = synaptiks.kde.trayapplication:main'],
'console_scripts': ['synaptikscfg = synaptiks.config:main']},
zip_safe=False,
install_requires=requirements,
kde_files={
'xdgdata-apps': ['synaptiks.desktop'],
'services': ['services/kcm_synaptiks.desktop'],
'appdata': ['services/kcm_synaptiks.py', 'synaptiks.notifyrc'],
'xdgconf-autostart': ['autostart/synaptiks_init_config.desktop'],
'autostart': ['autostart/synaptiks_autostart.desktop']},
kde_icons=[
ThemeIcon('hicolor', 'scalable', 'apps', 'pics/synaptiks.svgz'),
StandAloneIcon('pics/off-overlay.svgz')]
)
|