forked from ZorinOS/zorin-exec-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·25 lines (22 loc) · 890 Bytes
/
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
from distutils.core import setup
from DistUtilsExtra.command import *
class zorin_exec_guard_build_i18n(build_i18n.build_i18n):
def run(self):
build_i18n.build_i18n.run(self)
setup(
name='zorin-exec-guard',
version='1.4',
url='http://zorin.com',
author='Zorin OS Technologies Ltd.',
author_email='[email protected]',
description='Zorin Exec Guard',
long_description=("Zorin Exec Guard shows a warning when attempting to run unknown Linux or Windows executables and offers more trusted alternatives."),
license='GPL-3.0',
packages=['zorin_exec_guard'],
package_dir={'zorin_exec_guard': 'zorin_exec_guard'},
scripts=['bin/zorin-exec-guard-linux','bin/zorin-exec-guard-windows'],
cmdclass = { "build" : build_extra.build_extra,
"build_i18n" : zorin_exec_guard_build_i18n,
"clean": clean_i18n.clean_i18n,
}
)