aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-02-02 21:32:50 +0800
committerAaron LI <aly@aaronly.me>2018-02-02 21:32:50 +0800
commit9d741d62c4a6b78fd46ebee8c044f9025f38bfb7 (patch)
tree176da05bfb892a95efae86c52648e69437c76987
parent1f2758286769fec0bcff2be3457fe243035269a2 (diff)
downloadfg21sim-9d741d62c4a6b78fd46ebee8c044f9025f38bfb7.tar.bz2
setup.py: add Cython to dependencies and reorder, w.r.t. requirements.txt
-rwxr-xr-xsetup.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index a6b7faf..fbe5a12 100755
--- a/setup.py
+++ b/setup.py
@@ -82,18 +82,19 @@ setup(
zip_safe=False,
scripts=[os.path.join("bin", script) for script in os.listdir("bin/")],
install_requires=[
- "numpy",
- "numba",
- "scipy",
- "pandas",
+ "Cython",
"astropy",
- "healpy",
- "configobj",
"beautifulsoup4",
+ "configobj",
+ "healpy",
+ "hmf",
+ "numba",
+ "numpy",
+ "pandas",
+ "reproject",
"requests",
+ "scipy",
"tornado",
- "reproject",
- "hmf",
],
dependency_links=[
"git+https://github.com/astropy/regions.git",