forked from tualatrix/ubuntu-tweak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (25 loc) · 1.1 KB
/
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
25
26
import glob
from setuptools import setup, find_packages
from ubuntutweak import __version__
setup(name='ubuntu-tweak',
version=__version__,
description='magic tool to configure Ubuntu',
author='TualatriX',
author_email='[email protected]',
url='http://ubuntu-tweak.com',
scripts=['ubuntu-tweak'],
packages=find_packages(exclude=['tests']),
data_files=[
('../etc/dbus-1/system.d/', ['data/ubuntu-tweak-daemon.conf']),
('share/dbus-1/system-services', ['data/com.ubuntu_tweak.daemon.service']),
('share/glib-2.0/schemas', ['data/com.ubuntu-tweak.tweak.gschema.xml']),
('share/ubuntu-tweak/ui/', glob.glob('data/ui/*.ui')),
('share/ubuntu-tweak/pixmaps/', glob.glob('data/pixmaps/*.png')),
('share/ubuntu-tweak/scripts/', glob.glob('data/scripts/*')),
('share/ubuntu-tweak/templates/', glob.glob('data/templates/*')),
('share/ubuntu-tweak/', ['data/script-worker', 'data/uturl', 'data/ubuntu-tweak-daemon']),
],
license='GNU GPL',
platforms='linux',
test_suite='tests',
)