-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
58 lines (52 loc) · 2.14 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
#!/usr/bin/env python3
#
# Copyright 2016 Metehan Özbek <[email protected]>
# 2020 Erdem Ersoy <[email protected]>
#
# 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 3 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 Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
import subprocess
from setuptools import setup, find_packages
from os import listdir
from kaptan.libkaptan.version import Version
langs = []
for langfile in listdir("languages"):
if langfile.endswith("ts"):
subprocess.run(["lrelease", "languages/{}".format(langfile)])
langs.append("languages/{}".format(langfile).replace(".ts", ".qm"))
images = []
for imagefile in listdir("data/images"):
if imagefile != "kaptan-icon.svg":
images.append("data/images/{}".format(imagefile))
subprocess.run(["pyrcc5", "kaptan.qrc", "-o", "kaptan5/rc_kaptan.py"])
datas = [("/usr/share/applications", ["data/kaptan.desktop"]),
# Kaptan will be started via Pisi Linux Welcome Application
# ("/etc/skel/.config/autostart", ["data/kaptan.desktop"]),
("/usr/share/icons/hicolor/scalable/apps", ["data/images/kaptan-icon.svg"]),
("/usr/share/kaptan/languages", langs),
("/usr/share/kaptan/images", images)]
setup(
name="kaptan",
scripts=["script/kaptan"],
packages=find_packages(),
version=Version.getVersion(),
license="GPLv3",
description="Pisi Linux quick desktop configuraton tool.",
author="Metehan Özbek",
author_email="[email protected]",
url="https://github.com/PisiLinuxNew/kaptan",
keywords=["PyQt5"],
data_files=datas
)