diff options
author | Aaron LI <aly@aaronly.me> | 2017-05-31 22:49:53 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-05-31 22:49:53 +0800 |
commit | 6f286557c1cd0dd3948d8199123d0820e2b9e65e (patch) | |
tree | ba908301607aa09a1e59c90ee762fb81910effa7 | |
parent | e21529e00f7aaae480a3f0d5259c21627e8752be (diff) | |
download | fg21sim-6f286557c1cd0dd3948d8199123d0820e2b9e65e.tar.bz2 |
setup.py: Use `os.listdir("bin/")` to obtain all executables
-rwxr-xr-x | setup.py | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -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", |