From e984373dc0a0ebb501c3f73f0a6a7b4e7246f85e Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Thu, 20 Jul 2017 23:26:30 +0800 Subject: setup.py: Fix the missing directory for scripts This fixes the installation failure bug. Signed-off-by: Aaron LI --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index fd80c81..254551a 100755 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ setup( # Do NOT installed as a zipped egg, since Tornado requires direct access # to the templates and static files. zip_safe=False, - scripts=os.listdir("bin/"), + scripts=[os.path.join("bin", script) for script in os.listdir("bin/")], install_requires=[ "numpy", "numba", -- cgit v1.2.2