-----------------
- Completely restructured and rewrote code to use an `astropy.cosmology.FlatLambdaCDM` subclass for bulk of cosmological calculations. This class uses stored grids of distance measures to perform interpolation when inverting from a distance measure to a redshift.
- The basic functionality is working in which an input redshift, scale-factor, distance (lum or com), of time (age or lookback) can be input, and all of the other parameters will be calculated and printed.
- cosmopy/
- __main__.py
- This provides the entire API for command-line accessible functions (at the moment).
- `parse_input()` [NEW-FUNCTION]
- Take an input string which specifies a quantitative value and convert it into a usable numerical object using `astropy.units.Quantity`.
- `calc()`
- Runs all of the basic cosmological calculations.
- `output()`
- Format and print the resulting values.
- cosmology.py [NEW-FILE]
- Cosmology [NEW-CLASS]
- Currently uses fixed set of cosmological parameters (i.e. Omega values) and calculated distance measures.
- tests/ [NEW-FOLDER]
- test_main.py [NEW-FILE]
- Added a few very simple tests for parsing input values.
- parameters.py [DELETED]
- settings.py [DELETED]