diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-02 21:32:50 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-02 21:32:50 +0800 |
commit | 9d741d62c4a6b78fd46ebee8c044f9025f38bfb7 (patch) | |
tree | 176da05bfb892a95efae86c52648e69437c76987 /setup.py | |
parent | 1f2758286769fec0bcff2be3457fe243035269a2 (diff) | |
download | fg21sim-9d741d62c4a6b78fd46ebee8c044f9025f38bfb7.tar.bz2 |
setup.py: add Cython to dependencies and reorder, w.r.t. requirements.txt
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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", |