-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
24 lines (23 loc) · 885 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='libinput_gestures_qt',
version='0.4',
description='Qt interface for libinput-gestures (works best with Plasma)',
url='https://github.com/OneAdder/libinput_gestures_qt',
author='Michael Voronov',
author_email='[email protected]',
license='GPLv3',
packages=['libinput_gestures_qt'],
extras_require={
'dev': ['pytest']
},
zip_safe=False,
scripts=['libinput-gestures-qt'],
data_files=[
('share/applications', ['libinput_gestures_qt/logo/libinput-gestures-qt.desktop']),
('share/pixmaps/', ['libinput_gestures_qt/logo/libinput-gestures-qt.png']),
('local/share/applications', ['libinput_gestures_qt/logo/libinput-gestures-qt.desktop']),
('local/share/pixmaps/', ['libinput_gestures_qt/logo/libinput-gestures-qt.png']),
],
include_package_data=True
)