-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
65 lines (57 loc) · 2.33 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/env python3
#
# Copyright 2016 Metehan Özbek <mthnzbk@gmail.com>
#
# 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
import os
from setuptools import setup, find_packages
langs = []
for f in os.listdir("languages"):
if f.endswith(".ts"):
lang_file = "languages/{}".format(f)
subprocess.run(["lrelease-qt6", lang_file])
langs.append(("languages/{}".format(f)).replace(".ts", ".qm"))
release_notes = []
for f in os.listdir("data/release-notes"):
release_notes.append(("data/release-notes/{}".format(f)))
images = []
for imagefile in os.listdir("images"):
# if imagefile != "pisilinux-welcome.svg":
# images.append("images/{}".format(imagefile))
images.append("images/{}".format(imagefile))
# subprocess.run(["pyrcc5", "welcome.qrc", "-o", "welcome/resource.py"])
print(release_notes)
print(langs)
datas = [('/usr/share/applications', ['data/pisilinux-welcome.desktop']),
('/usr/share/icons/hicolor/scalable/apps', ['images/pisilinux-welcome.svg']),
# ('/etc/skel/.config/autostart', ['data/pisilinux-welcome.desktop']),
('/usr/share/pisilinux-welcome/data/release-notes', release_notes),
('/usr/share/pisilinux-welcome/languages', langs),
("/usr/share/pisilinux-welcome/images", images)]
setup(
name="pisilinux-welcome",
scripts=["pisilinux-welcome"],
packages=find_packages(),
version="2.0",
license="GPLv3",
description="Pisi Linux Welcome Application",
author="Metehan Özbek",
author_email="mthnzbk@gmail.com",
url="https://github.com/PisiLinuxNew/pisilinux-welcome",
keywords=["Pisi", "Linux", "Welcome", "PyQt6"],
data_files=datas
)