From 6f286557c1cd0dd3948d8199123d0820e2b9e65e Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 31 May 2017 22:49:53 +0800 Subject: setup.py: Use `os.listdir("bin/")` to obtain all executables --- setup.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 6fffb2c..fd80c81 100755 --- a/setup.py +++ b/setup.py @@ -75,16 +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=[ - "bin/fg21sim", - "bin/fg21sim-download-cluster-data", - "bin/fg21sim-download-snr-data", - "bin/fg21sim-webui", - "bin/get-healpix-patch", - "bin/healpix2hpx", - "bin/hpx2healpix", - "bin/zea2healpix", - ], + scripts=os.listdir("bin/"), install_requires=[ "numpy", "numba", -- cgit v1.2.2