aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-10-15 09:58:08 +0800
committerAaron LI <aaronly.me@outlook.com>2016-10-15 09:58:08 +0800
commit1ea04bfcbf6e4fcb1fe63dfc26f90a4ae8468d28 (patch)
tree1549985c7ffbb91ac3993b40b2af54c319ae260a
parent316f0a7fe47b51bbe4e5cea73261b067ee9b4c93 (diff)
downloadfg21sim-1ea04bfcbf6e4fcb1fe63dfc26f90a4ae8468d28.tar.bz2
Install 'bin/fg21sim-download-snr-data' and update requirements.
Add two new requirements: beautifulsoup4, requests
-rw-r--r--requirements.txt2
-rwxr-xr-xsetup.py3
2 files changed, 5 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
index a104f35..0a6c52c 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,3 +3,5 @@ scipy
astropy
healpy
configobj
+beautifulsoup4
+requests
diff --git a/setup.py b/setup.py
index ec107f5..29f6842 100755
--- a/setup.py
+++ b/setup.py
@@ -75,6 +75,7 @@ setup(
"bin/healpix2hpx",
"bin/hpx2healpix",
"bin/zea2healpix",
+ "bin/fg21sim-download-snr-data",
],
install_requires=[
"numpy",
@@ -82,6 +83,8 @@ setup(
"astropy",
"healpy",
"configobj",
+ "beautifulsoup4",
+ "requests",
],
tests_require=["pytest"],
cmdclass={"test": PyTest},