aboutsummaryrefslogtreecommitdiffstats
path: root/requirements.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update dependenciesAaron LI2018-12-211-1/+1
|
* requirements: add Cython (required by regions); reorderAaron LI2018-01-311-8/+9
|
* clusters: Use "hmf" to calculate halo mass functions/distributionsAaron LI2017-10-041-0/+1
| | | | | | | | | | | | * New dependency "hmf" (halo mass functions) module * Calculate halo mass distributions/functions (dndlnm) with respect to masses and redshifts, instead of use the previous data file ("ps_data") * New section "[extragalactic][psformalism]" in configurations * New functions to write and read the dndlnm data TODO: * update the method to sample (mass, redshift) for clusters from the dndlnm data
* Add missing requirement "reproject"Aaron LI2017-07-201-0/+1
| | | | | | Also works with Python 3.6 (basic tests at the moment) Signed-off-by: Aaron LI <aly@aaronly.me>
* Add new dependence "astropy/regions" from GitHubAaron LI2017-05-221-0/+1
| | | | | | | | Credit: * Adding git (or hg, or svn) dependencies in setup.py (Python) https://mike.zwobble.org/2013/05/adding-git-or-hg-or-svn-dependencies-in-setup-py/ * Python Dependencies via Pip https://devcenter.heroku.com/articles/python-pip
* webui: Build the Web UI using Tornado with WebSocketAaron LI2016-10-301-0/+1
| | | | Tornado: http://www.tornadoweb.org/
* Add back "scipy" to dependencies as utils/reproject.py requiresAaron LI2016-10-281-0/+1
|
* utils/grid.py: Use own-implemented JIT-optimized "rotate_center()"Aaron LI2016-10-261-1/+0
| | | | Also remove the dependence on "scipy".
* convert.py: Optimize "Fnu_to_Tb()" and "Sb_to_Tb()"Aaron LI2016-10-241-0/+1
| | | | | | | | | * Optimize the "Fnu_to_Tb()" and "Sb_to_Tb()" functions by explicitly calculating the conversions, avoiding the slow `astropy.unit` conversions (which is rather slow). The new fast functions are named as "Fnu_to_Tb_fast()" and "Sb_to_Tb_fast()". * Optimize the new functions using `numba.jit` further. * Add `numba` to the dependencies.
* Add requirement "pandas" as "galactic/snr.py" will use itAaron LI2016-10-151-0/+1
|
* Install 'bin/fg21sim-download-snr-data' and update requirements.Aaron LI2016-10-151-0/+2
| | | | Add two new requirements: beautifulsoup4, requests
* Add the new dependency: scipyAaron LI2016-10-141-0/+1
| | | | The utils/zea2healpix requires scipy.
* Sync requirements.txt with setup.pyAaron LI2016-10-041-2/+1
|
* Update requirements.txtAaron LI2016-09-251-0/+3
|
* Setup package structuresAaron LI2016-09-201-0/+2
Credit: https://github.com/kennethreitz/samplemod TODO: Add the 'docs' part