CosmoloPy 
=========

a cosmology package for Python

For documentation and installation instructions, see
http://roban.github.com/CosmoloPy/

CosmoloPy is released under the MIT software liscense (see LISCENSE).

Example
-------

Calculate the comoving distance to redshift 6.

 >>> import cosmolopy.distance as cd
 >>> cosmo = {'omega_M_0':0.3, 'omega_lambda_0':0.7, 'omega_k_0':0.0, 'h':0.72}
 >>> d_co, err = cd.comoving_distance(6., **cosmo)
 >>> print "Comoving distance to z=6 is %.1f Mpc" % (d_co)
 Comoving distance to z=6 is 8017.8 Mpc


Prerequisites
------------
  Python
  NumPy
  SciPy

 For tests:
  nose
  matplotlib

 For power spectrum calculation (needed for most of perturbation module):
  python-dev 
  swig


