-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
98 lines (89 loc) · 3.68 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
93
94
95
96
97
98
#!/usr/bin/python3
from setuptools import setup, find_packages
from setuptools.command.install import install
import glob
import os
VERSION = "0.8.2"
data_files = [
('/usr/share/qomui', ['resources/countries.json']),
('/usr/share/applications/', ['resources/qomui.desktop']),
('/usr/lib/systemd/system/', ['systemd/qomui.service']),
('/usr/share/dbus-1/system.d/', ['systemd/org.qomui.service.conf']),
('/usr/share/dbus-1/system-services/', ['systemd/org.qomui.service']),
('/usr/share/icons/hicolor/scalable/apps/', ['resources/qomui.svg',
'resources/qomui_off.svg']),
('/usr/share/qomui/', [
'resources/AzireVPN_config',
'resources/Airvpn_config',
'resources/PIA_config',
'resources/ProtonVPN_config',
'resources/Windscribe_config',
'resources/Airvpn_config_old',
'resources/Mullvad_config',
'resources/Mullvad_config_old',
'resources/PIA_config_old',
'resources/ProtonVPN_config_old',
'resources/Windscribe_config_old',
'resources/default_config.json',
'resources/firewall_default.json',
'resources/ssl_config',
'resources/qomui.png',
'resources/airvpn_api.pem',
'resources/airvpn_cacert.pem',
'VERSION']
),
('/usr/share/qomui/scripts/', [
'scripts/hop.sh',
'scripts/hop_down.sh',
'scripts/bypass_up.sh',
'scripts/bypass_route.sh'
]),
('/usr/share/qomui/flags/', glob.glob('resources/flags/*'))
]
def post_install(i):
try:
for f in data_files:
for o in f[1]:
fmod = os.path.join(f[0], os.path.basename(o))
if os.path.splitext(fmod)[1] == ".sh":
os.chmod(fmod, 0o774)
else:
os.chmod(fmod, 0o664)
except (FileNotFoundError, PermissionError) as e:
pass
class CustomInstall(install):
def run(self):
install.run(self)
self.execute(post_install, (self.install_lib,), msg="Running post-install script to fix file permissions")
setup(name="qomui",
version=VERSION,
packages=['qomui'],
include_package_data=True,
install_requires=[
'beautifulsoup4',
'pexpect',
'psutil',
'requests',
'lxml'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Security',
],
data_files = data_files,
license='GPLv3+',
entry_points={
'gui_scripts': [
'qomui-gui=qomui.qomui_gui:main'
],
'console_scripts': [
'qomui-service=qomui.qomui_service:main',
'qomui-cli=qomui.qomui_cli:main'
]},
cmdclass={'install': CustomInstall}
)