-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
92 lines (85 loc) · 2.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env python3
import os
import subprocess
from setuptools import setup, find_packages
changelog = "debian/changelog"
version = "0.7.0"
if os.path.exists(changelog):
head = open(changelog).readline()
try:
version = head.split("(")[1].split(")")[0]
except:
print("debian/changelog format is wrong for get version")
f = open("src/__version__", "w")
f.write(version)
f.close()
def create_mo_files():
podir = "po"
mo = []
for po in os.listdir(podir):
if po.endswith(".po"):
os.makedirs(
"{}/{}/LC_MESSAGES".format(podir, po.split(".po")[0]), exist_ok=True
)
mo_file = "{}/{}/LC_MESSAGES/{}".format(
podir, po.split(".po")[0], "pardus-image-writer.mo"
)
msgfmt_cmd = "msgfmt {} -o {}".format(podir + "/" + po, mo_file)
subprocess.call(msgfmt_cmd, shell=True)
mo.append(
(
"/usr/share/locale/" + po.split(".po")[0] + "/LC_MESSAGES",
[
"po/"
+ po.split(".po")[0]
+ "/LC_MESSAGES/pardus-image-writer.mo"
],
)
)
return mo
data_files = [
("/usr/share/applications/", ["tr.org.pardus.image-writer.desktop"]),
(
"/usr/share/pardus/pardus-image-writer/assets",
[
"assets/main.svg",
"assets/iso.svg",
"assets/disk.svg",
"assets/pardus-image-writer.svg",
"assets/uefi-ntfs.img",
],
),
(
"/usr/share/pardus/pardus-image-writer/src",
[
"src/Main.py",
"src/MainWindow.py",
"src/ISOCopier.py",
"src/ImageWriter.py",
"src/USBDeviceManager.py",
"src/copy_dir_with_dd.sh",
"src/__version__",
],
),
("/usr/share/pardus/pardus-image-writer/ui", ["ui/MainWindow.glade"]),
(
"/usr/share/polkit-1/actions",
["tr.org.pardus.pkexec.pardus-image-writer.policy"],
),
("/usr/bin/", ["pardus-image-writer"]),
("/usr/share/icons/hicolor/scalable/apps/", ["assets/pardus-image-writer.svg"]),
] + create_mo_files()
setup(
name="Pardus Image Writer",
version=version,
packages=find_packages(),
scripts=["pardus-image-writer"],
install_requires=["PyGObject"],
data_files=data_files,
author="Emin Fedar",
author_email="[email protected]",
description="Pardus ISO Image Writer.",
license="GPLv3",
keywords="iso usb image burn write",
url="https://github.com/pardus/pardus-image-writer",
)