From c96fbbb0495e828cad2f224322885091edcd6e36 Mon Sep 17 00:00:00 2001 From: rigid Date: Sat, 25 Mar 2017 13:24:21 +0100 Subject: [PATCH] make transwhat.py executable by installing transwhat.py as a [script](https://docs.python.org/3/distutils/setupscript.html#installing-scripts), it get's installed in a PATH directory (/usr/bin) and can be executed from there. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 824273a..4cea354 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,9 @@ setup(name='transwhat', 'transWhat', 'Spectrum2' ], + scripts=[ + 'transWhat/transwhat.py' + ], install_requires=[ 'protobuf', 'yowsup2',