opensnitch/ui/setup.py
intika 7c124010a6
KDE5 support
- Add opensnitch to application menu 
- Add opensnitch to systemsettings
2018-04-14 05:22:15 +02:00

24 lines
804 B
Python

from setuptools import setup, find_packages
import os
import sys
path = os.path.abspath(os.path.dirname(__file__))
sys.path.append(path)
from opensnitch.version import version
setup(name='opensnitch-ui',
version=version,
description='Prompt service and UI for the opensnitch application firewall.',
url='https://github.com/evilsocket/opensnitch',
author='Simone "evilsocket" Margaritelli',
author_email='evilsocket@protonmail.com',
license='GPL',
packages=find_packages(),
include_package_data = True,
package_data={'': ['*.*']},
data_files=[('/usr/share/applications', ['opensnitch_ui.desktop']),
('/usr/share/kservices5', ['kcm_opensnitch.desktop'])],
scripts = [ 'bin/opensnitch-ui' ],
zip_safe=False)