forked from ubuntu-mate/mate-hud
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·65 lines (56 loc) · 2.07 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
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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright (C) 2018 by Chris Holland <zrenfire@gmail.com>
# Copyright (C) 2016 by Martin Wimpress <code@flexion.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
import os
import sys
from glob import glob
from setuptools import setup
import DistUtilsExtra.command.build_extra
import DistUtilsExtra.command.build_i18n
import DistUtilsExtra.command.clean_i18n
__VERSION__ = '19.10.1'
def datafilelist(installbase, sourcebase):
datafileList = []
for root, subFolders, files in os.walk(sourcebase):
fileList = []
for f in files:
fileList.append(os.path.join(root, f))
datafileList.append((root.replace(sourcebase, installbase), fileList))
return datafileList
data_files = [
('{prefix}/lib/plasma-hud/'.format(prefix=sys.prefix), ['usr/lib/plasma-hud/plasma-hud']),
('/etc/xdg/autostart/', ['etc/xdg/autostart/plasma-hud.desktop']),
]
cmdclass = {
"build" : DistUtilsExtra.command.build_extra.build_extra,
"clean": DistUtilsExtra.command.clean_i18n.clean_i18n,
}
setup(
name = "plasma-hud",
version = __VERSION__,
description = "Run menubar commands, much like the Unity 7 HUD",
license = 'GPLv2+',
author = 'Chris Holland',
url = 'https://github.com/Zren/plasma-hud/',
#package_dir = {'': '.'},
data_files = data_files,
install_requires = ['setuptools'],
#scripts = [],
cmdclass = cmdclass,
)