├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── joss.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── binder ├── requirements.txt └── runtime.txt ├── docs ├── .gitignore ├── Makefile ├── _static │ ├── big_logo.png │ ├── exoplanet.css │ ├── favicon.png │ ├── logo.png │ ├── logo_shadow.png │ └── orbit3D.png ├── changes.rst ├── conf.py ├── index.rst ├── tutorials │ ├── about.md │ ├── autodiff.md │ ├── citation.md │ ├── data-and-models.md │ ├── intro-to-pymc.md │ ├── intro-to-pymc3.md │ ├── ipython_kernel_config.py │ ├── light-delay.md │ └── reparameterization.md └── user │ ├── api.rst │ ├── dev.rst │ ├── install.rst │ └── multiprocessing.rst ├── joss ├── figures │ ├── figure.png │ └── joss-logo.png ├── metadata.yaml ├── paper.bib └── paper.md ├── noxfile.py ├── pyproject.toml ├── pytest.ini ├── readthedocs.yml ├── setup.py ├── src └── exoplanet │ ├── __init__.py │ ├── citations.py │ ├── compat.py │ ├── distributions │ ├── __init__.py │ ├── distributions.py │ └── eccentricity.py │ ├── estimators.py │ ├── interp.py │ ├── light_curves │ ├── __init__.py │ ├── interpolated.py │ ├── limb_dark.py │ └── secondary_eclipse.py │ ├── orbits │ ├── __init__.py │ ├── constants.py │ ├── dur_to_ecc.py │ ├── keplerian.py │ ├── simple.py │ └── ttv.py │ ├── units.py │ └── utils.py ├── tests ├── citations_test.py ├── distributions_test.py ├── estimators_test.py ├── interp_test.py ├── light_curves_test.py ├── orbits │ ├── keplerian_test.py │ ├── simple_test.py │ └── ttv_test.py └── units_test.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/joss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.github/workflows/joss.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/README.md -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/binder/requirements.txt -------------------------------------------------------------------------------- /binder/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9 2 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/big_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/big_logo.png -------------------------------------------------------------------------------- /docs/_static/exoplanet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/exoplanet.css -------------------------------------------------------------------------------- /docs/_static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/favicon.png -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logo_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/logo_shadow.png -------------------------------------------------------------------------------- /docs/_static/orbit3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/_static/orbit3D.png -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/tutorials/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/about.md -------------------------------------------------------------------------------- /docs/tutorials/autodiff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/autodiff.md -------------------------------------------------------------------------------- /docs/tutorials/citation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/citation.md -------------------------------------------------------------------------------- /docs/tutorials/data-and-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/data-and-models.md -------------------------------------------------------------------------------- /docs/tutorials/intro-to-pymc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/intro-to-pymc.md -------------------------------------------------------------------------------- /docs/tutorials/intro-to-pymc3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/intro-to-pymc3.md -------------------------------------------------------------------------------- /docs/tutorials/ipython_kernel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/ipython_kernel_config.py -------------------------------------------------------------------------------- /docs/tutorials/light-delay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/light-delay.md -------------------------------------------------------------------------------- /docs/tutorials/reparameterization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/tutorials/reparameterization.md -------------------------------------------------------------------------------- /docs/user/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/user/api.rst -------------------------------------------------------------------------------- /docs/user/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/user/dev.rst -------------------------------------------------------------------------------- /docs/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/user/install.rst -------------------------------------------------------------------------------- /docs/user/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/docs/user/multiprocessing.rst -------------------------------------------------------------------------------- /joss/figures/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/joss/figures/figure.png -------------------------------------------------------------------------------- /joss/figures/joss-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/joss/figures/joss-logo.png -------------------------------------------------------------------------------- /joss/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/joss/metadata.yaml -------------------------------------------------------------------------------- /joss/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/joss/paper.bib -------------------------------------------------------------------------------- /joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/joss/paper.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/setup.py -------------------------------------------------------------------------------- /src/exoplanet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/__init__.py -------------------------------------------------------------------------------- /src/exoplanet/citations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/citations.py -------------------------------------------------------------------------------- /src/exoplanet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/compat.py -------------------------------------------------------------------------------- /src/exoplanet/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/distributions/__init__.py -------------------------------------------------------------------------------- /src/exoplanet/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/distributions/distributions.py -------------------------------------------------------------------------------- /src/exoplanet/distributions/eccentricity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/distributions/eccentricity.py -------------------------------------------------------------------------------- /src/exoplanet/estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/estimators.py -------------------------------------------------------------------------------- /src/exoplanet/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/interp.py -------------------------------------------------------------------------------- /src/exoplanet/light_curves/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/light_curves/__init__.py -------------------------------------------------------------------------------- /src/exoplanet/light_curves/interpolated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/light_curves/interpolated.py -------------------------------------------------------------------------------- /src/exoplanet/light_curves/limb_dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/light_curves/limb_dark.py -------------------------------------------------------------------------------- /src/exoplanet/light_curves/secondary_eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/light_curves/secondary_eclipse.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/__init__.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/constants.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/dur_to_ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/dur_to_ecc.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/keplerian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/keplerian.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/simple.py -------------------------------------------------------------------------------- /src/exoplanet/orbits/ttv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/orbits/ttv.py -------------------------------------------------------------------------------- /src/exoplanet/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/units.py -------------------------------------------------------------------------------- /src/exoplanet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/src/exoplanet/utils.py -------------------------------------------------------------------------------- /tests/citations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/citations_test.py -------------------------------------------------------------------------------- /tests/distributions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/distributions_test.py -------------------------------------------------------------------------------- /tests/estimators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/estimators_test.py -------------------------------------------------------------------------------- /tests/interp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/interp_test.py -------------------------------------------------------------------------------- /tests/light_curves_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/light_curves_test.py -------------------------------------------------------------------------------- /tests/orbits/keplerian_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/orbits/keplerian_test.py -------------------------------------------------------------------------------- /tests/orbits/simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/orbits/simple_test.py -------------------------------------------------------------------------------- /tests/orbits/ttv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/orbits/ttv_test.py -------------------------------------------------------------------------------- /tests/units_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tests/units_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exoplanet-dev/exoplanet/HEAD/tox.ini --------------------------------------------------------------------------------