py-lfkit 0.1.4__tar.gz → 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (266) hide show
  1. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/docs.yml +1 -1
  2. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/MANIFEST.in +3 -1
  3. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/PKG-INFO +9 -2
  4. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/README.md +8 -1
  5. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/lf_overview.rst +1 -1
  6. py_lfkit-0.2.0/docs/api/lfkit.api.conditional_luminosity_function.rst +7 -0
  7. py_lfkit-0.2.0/docs/api/lfkit.api.luminosity_function.rst +7 -0
  8. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.api.rst +2 -1
  9. py_lfkit-0.2.0/docs/api/lfkit.photometry.conditional_lf_integrals.rst +7 -0
  10. py_lfkit-0.2.0/docs/api/lfkit.photometry.conditional_lf_models.rst +7 -0
  11. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.rst +2 -0
  12. py_lfkit-0.2.0/docs/api/lfkit.utils.integrators.rst +7 -0
  13. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.rst +1 -0
  14. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/conf.py +7 -2
  15. py_lfkit-0.2.0/docs/examples/api_overview.rst +553 -0
  16. py_lfkit-0.1.4/docs/examples/catalog_completeness_examples.rst → py_lfkit-0.2.0/docs/examples/catalog_completeness.rst +18 -30
  17. py_lfkit-0.2.0/docs/examples/conditional_luminosity_function.rst +1191 -0
  18. py_lfkit-0.2.0/docs/examples/index.rst +23 -0
  19. py_lfkit-0.2.0/docs/examples/luminosity_function_models.rst +626 -0
  20. py_lfkit-0.2.0/docs/examples/magnitude_integrals.rst +385 -0
  21. py_lfkit-0.2.0/docs/examples/magnitudes_and_luminosities.rst +211 -0
  22. py_lfkit-0.2.0/docs/examples/model_registry.rst +63 -0
  23. py_lfkit-0.2.0/docs/examples/redshift_density.rst +246 -0
  24. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/index.rst +2 -2
  25. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/pyproject.toml +2 -1
  26. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/__init__.py +3 -1
  27. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/_version.py +3 -3
  28. py_lfkit-0.2.0/src/lfkit/api/_clf_models.py +23 -0
  29. py_lfkit-0.2.0/src/lfkit/api/_completeness.py +51 -0
  30. py_lfkit-0.2.0/src/lfkit/api/_expose.py +45 -0
  31. py_lfkit-0.2.0/src/lfkit/api/_integrals.py +53 -0
  32. py_lfkit-0.2.0/src/lfkit/api/_lf_param_models.py +77 -0
  33. py_lfkit-0.2.0/src/lfkit/api/_luminosities.py +36 -0
  34. py_lfkit-0.2.0/src/lfkit/api/_magnitudes.py +27 -0
  35. py_lfkit-0.2.0/src/lfkit/api/_redshift_density.py +39 -0
  36. py_lfkit-0.2.0/src/lfkit/api/conditional_luminosity_function.py +161 -0
  37. py_lfkit-0.2.0/src/lfkit/api/luminosity_function.py +370 -0
  38. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/catalog_completeness.py +3 -3
  39. py_lfkit-0.2.0/src/lfkit/photometry/conditional_lf_integrals.py +152 -0
  40. py_lfkit-0.2.0/src/lfkit/photometry/conditional_lf_models.py +424 -0
  41. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_integrals.py +168 -131
  42. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_parameter_models.py +6 -6
  43. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/lf_redshift_density.py +1 -1
  44. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/luminosity_function.py +18 -18
  45. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/download_poggianti97_data.py +4 -2
  46. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/evaluators.py +57 -1
  47. py_lfkit-0.2.0/src/lfkit/utils/integrators.py +172 -0
  48. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/types.py +4 -0
  49. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/PKG-INFO +9 -2
  50. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/SOURCES.txt +34 -6
  51. py_lfkit-0.2.0/tests/benchmarks/test_cacciato_clf_reference.py +246 -0
  52. py_lfkit-0.2.0/tests/benchmarks/test_cacciato_hod_reference.py +247 -0
  53. py_lfkit-0.2.0/tests/test_api_conditional_luminosity_function.py +192 -0
  54. py_lfkit-0.2.0/tests/test_api_luminosity_function.py +421 -0
  55. py_lfkit-0.2.0/tests/test_photometry_conditional_lf_integrals.py +350 -0
  56. py_lfkit-0.2.0/tests/test_photometry_conditional_lf_models.py +513 -0
  57. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_integrals.py +112 -19
  58. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_luminosity_function.py +20 -20
  59. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_download_pogg97_data.py +2 -2
  60. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_evaluators.py +277 -0
  61. py_lfkit-0.2.0/tests/test_utils_integrators.py +362 -0
  62. py_lfkit-0.1.4/docs/api/lfkit.api.lumfunc.rst +0 -7
  63. py_lfkit-0.1.4/docs/examples/index.rst +0 -72
  64. py_lfkit-0.1.4/docs/examples/luminosity_function_examples.rst +0 -959
  65. py_lfkit-0.1.4/src/lfkit/api/lumfunc.py +0 -914
  66. py_lfkit-0.1.4/tests/test_api_lumfunc.py +0 -1329
  67. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/ci.yml +0 -0
  68. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.github/workflows/publish.yml +0 -0
  69. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/.gitignore +0 -0
  70. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/CITATION.cff +0 -0
  71. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/LICENSE +0 -0
  72. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/Makefile +0 -0
  73. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/custom.css +0 -0
  74. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo-icon.png +0 -0
  75. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.pdf +0 -0
  76. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.png +0 -0
  77. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_static/logos/lfkit_logo.svg +0 -0
  78. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_templates/pages_redirect.html +0 -0
  79. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/_templates/sidebar/brand.html +0 -0
  80. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/corr_overview.rst +0 -0
  81. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/about/index.rst +0 -0
  82. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/index.rst +0 -0
  83. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.api.corrections.rst +0 -0
  84. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.color_anchors.rst +0 -0
  85. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.filters.rst +0 -0
  86. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_backend.rst +0 -0
  87. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_from_color.rst +0 -0
  88. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.kcorrect_grids.rst +0 -0
  89. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.poggianti1997.rst +0 -0
  90. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.responses.rst +0 -0
  91. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.corrections.rst +0 -0
  92. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.cosmo.cosmology.rst +0 -0
  93. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.cosmo.rst +0 -0
  94. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.catalog_completeness.rst +0 -0
  95. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_integrals.rst +0 -0
  96. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_parameter_models.rst +0 -0
  97. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.lf_redshift_density.rst +0 -0
  98. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.luminosities.rst +0 -0
  99. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.luminosity_function.rst +0 -0
  100. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.photometry.magnitudes.rst +0 -0
  101. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.rst +0 -0
  102. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.download_poggianti97_data.rst +0 -0
  103. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.evaluators.rst +0 -0
  104. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.interpolation.rst +0 -0
  105. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.io.rst +0 -0
  106. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.types.rst +0 -0
  107. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.units.rst +0 -0
  108. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/api/lfkit.utils.validators.rst +0 -0
  109. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/examples/kcorrect_examples.rst +0 -0
  110. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/examples/poggianti_examples.rst +0 -0
  111. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/docs/make.bat +0 -0
  112. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_github_banner.png +0 -0
  113. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo-icon.png +0 -0
  114. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.pdf +0 -0
  115. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.png +0 -0
  116. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/lfkit_logo.svg +0 -0
  117. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/make_gh_banner.py +0 -0
  118. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/logo/make_logo.py +0 -0
  119. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.pdf +0 -0
  120. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-g__blue-red__surveys-native-gr.png +0 -0
  121. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.pdf +0 -0
  122. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-i__blue-red__surveys-native-gr.png +0 -0
  123. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.pdf +0 -0
  124. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-r__blue-red__surveys-native-gr.png +0 -0
  125. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.pdf +0 -0
  126. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-u__blue-red__surveys-native-gr.png +0 -0
  127. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.pdf +0 -0
  128. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_kcorrect_surveys_color_split/kcorr__band-z__blue-red__surveys-native-gr.png +0 -0
  129. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-B__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  130. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-B__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  131. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-I__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  132. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-I__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  133. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-R__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  134. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-R__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  135. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-U__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  136. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-U__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  137. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-V__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  138. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/bessell/Kcurves__system-bessell__band-V__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  139. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-g__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  140. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-g__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  141. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-i__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  142. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-i__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  143. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-r__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.pdf +0 -0
  144. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/compare_poggianti_to_kcorrect/sdss/Kcurves__system-sdss__band-r__zmax-3.5__nz-401__pchip__extrap-1__anchorz0-1.png +0 -0
  145. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_B.pdf +0 -0
  146. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_I.pdf +0 -0
  147. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_R.pdf +0 -0
  148. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_U.pdf +0 -0
  149. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone/K__band_bessell_V.pdf +0 -0
  150. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_Y.pdf +0 -0
  151. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_g.pdf +0 -0
  152. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_i.pdf +0 -0
  153. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_r.pdf +0 -0
  154. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_u.pdf +0 -0
  155. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__decam__z0.0000_4.0__Nz801__bsnone/K__band_decam_z.pdf +0 -0
  156. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_g0.pdf +0 -0
  157. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_i0.pdf +0 -0
  158. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_r0.pdf +0 -0
  159. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_u0.pdf +0 -0
  160. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone/K__band_sdss_z0.pdf +0 -0
  161. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_B.pdf +0 -0
  162. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Ic.pdf +0 -0
  163. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_Rc.pdf +0 -0
  164. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_V.pdf +0 -0
  165. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_g.pdf +0 -0
  166. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_i.pdf +0 -0
  167. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_r.pdf +0 -0
  168. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/kcorrect/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone/K__band_subaru_suprimecam_z.pdf +0 -0
  169. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_E.pdf +0 -0
  170. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_E2.pdf +0 -0
  171. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sa.pdf +0 -0
  172. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_B_type_Sc.pdf +0 -0
  173. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_E.pdf +0 -0
  174. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_E2.pdf +0 -0
  175. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sa.pdf +0 -0
  176. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_H_type_Sc.pdf +0 -0
  177. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_E.pdf +0 -0
  178. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_E2.pdf +0 -0
  179. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sa.pdf +0 -0
  180. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_I_type_Sc.pdf +0 -0
  181. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_E.pdf +0 -0
  182. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Ic_type_Sc.pdf +0 -0
  183. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_E.pdf +0 -0
  184. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_E2.pdf +0 -0
  185. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sa.pdf +0 -0
  186. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_J_type_Sc.pdf +0 -0
  187. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_E.pdf +0 -0
  188. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_E2.pdf +0 -0
  189. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sa.pdf +0 -0
  190. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_K_type_Sc.pdf +0 -0
  191. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_E.pdf +0 -0
  192. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_E2.pdf +0 -0
  193. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sa.pdf +0 -0
  194. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_R_type_Sc.pdf +0 -0
  195. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_E.pdf +0 -0
  196. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_Rc_type_Sc.pdf +0 -0
  197. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_E.pdf +0 -0
  198. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_E2.pdf +0 -0
  199. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sa.pdf +0 -0
  200. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_U_type_Sc.pdf +0 -0
  201. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_E.pdf +0 -0
  202. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_E2.pdf +0 -0
  203. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sa.pdf +0 -0
  204. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_V_type_Sc.pdf +0 -0
  205. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_E.pdf +0 -0
  206. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_E2.pdf +0 -0
  207. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sa.pdf +0 -0
  208. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/output/plots/poggianti1997/ke_pogg1997_band_g_type_Sc.pdf +0 -0
  209. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/compare_kcorr_surveys.py +0 -0
  210. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/compare_poggianti_to_kcorrect.py +0 -0
  211. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/make_fake_magnitude_limited_catalog.py +0 -0
  212. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/scripts/plot_poggianti1997_corrections.py +0 -0
  213. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/setup.cfg +0 -0
  214. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/api/__init__.py +0 -0
  215. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/api/corrections.py +0 -0
  216. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/__init__.py +0 -0
  217. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/color_anchors.py +0 -0
  218. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/filters.py +0 -0
  219. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_backend.py +0 -0
  220. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_from_color.py +0 -0
  221. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/kcorrect_grids.py +0 -0
  222. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/poggianti1997.py +0 -0
  223. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/corrections/responses.py +0 -0
  224. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/cosmo/__init__.py +0 -0
  225. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/cosmo/cosmology.py +0 -0
  226. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/demo_catalogs/fake_magnitude_limited_catalog.csv +0 -0
  227. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__bessell__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  228. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__decam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  229. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__sdss__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  230. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/kcorrect/grids/kcorrect__subaru_suprimecam__z0.0000_4.0__Nz801__bsnone.npz +0 -0
  231. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/__init__.py +0 -0
  232. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/ecorr.csv +0 -0
  233. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/filters.csv +0 -0
  234. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/kcorr.csv +0 -0
  235. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/kcorrv.csv +0 -0
  236. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/data/poggianti1997/sed.csv +0 -0
  237. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/__init__.py +0 -0
  238. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/luminosities.py +0 -0
  239. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/photometry/magnitudes.py +0 -0
  240. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/__init__.py +0 -0
  241. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/interpolation.py +0 -0
  242. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/io.py +0 -0
  243. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/units.py +0 -0
  244. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/lfkit/utils/validators.py +0 -0
  245. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/dependency_links.txt +0 -0
  246. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/requires.txt +0 -0
  247. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/src/py_lfkit.egg-info/top_level.txt +0 -0
  248. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_api_corrections.py +0 -0
  249. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_color_anchors.py +0 -0
  250. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_filters.py +0 -0
  251. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrect_backend.py +0 -0
  252. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrect_from_color.py +0 -0
  253. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_kcorrrect_grids.py +0 -0
  254. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_poggianti1997.py +0 -0
  255. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_corrections_responses.py +0 -0
  256. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_cosmo_cosmology.py +0 -0
  257. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_completeness.py +0 -0
  258. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_completeness_fake_catalog.py +0 -0
  259. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_parameter_models.py +0 -0
  260. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_lf_redshift_density.py +0 -0
  261. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_luminosities.py +0 -0
  262. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_photometry_magnitudes.py +0 -0
  263. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_interpolation.py +0 -0
  264. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_io.py +0 -0
  265. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_units.py +0 -0
  266. {py_lfkit-0.1.4 → py_lfkit-0.2.0}/tests/test_utils_validators.py +0 -0
@@ -28,6 +28,7 @@ jobs:
28
28
  - name: Build docs
29
29
  run: |
30
30
  tox -e docs-releases
31
+ find docs/_build/html -maxdepth 2 -name index.html -print
31
32
 
32
33
  - name: Deploy documentation
33
34
  uses: peaceiris/actions-gh-pages@v4
@@ -35,4 +36,3 @@ jobs:
35
36
  publish_branch: gh-pages
36
37
  github_token: ${{ secrets.GITHUB_TOKEN }}
37
38
  publish_dir: docs/_build/html
38
- force_orphan: true
@@ -1,3 +1,5 @@
1
1
  recursive-include src/lfkit/data/kcorrect/grids *.npz
2
2
  recursive-include src/lfkit/data/kcorrect/responses *.dat
3
- recursive-include src/lfkit/data/poggianti1997 *.csv
3
+ recursive-include src/lfkit/data/poggianti1997 *.csv
4
+
5
+ recursive-include tests/data *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: py-lfkit
3
- Version: 0.1.4
3
+ Version: 0.2.0
4
4
  Summary: Luminosity functions and photometric corrections toolkit.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -37,6 +37,7 @@ Dynamic: license-file
37
37
  [![CI](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/ci.yml?branch=main&label=CI&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
38
38
  [![Docs](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/docs.yml?branch=main&label=docs&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
39
39
  [![License](https://img.shields.io/github/license/cosmology-kit/lfkit?color=28A8C8&style=flat-square)](LICENSE)
40
+ [![PyPI](https://img.shields.io/pypi/v/py-lfkit?color=28A8C8&style=flat-square)](https://pypi.org/project/py-lfkit/)
40
41
 
41
42
  **LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
42
43
  and related utilities for cosmological analyses.
@@ -66,6 +67,12 @@ into larger analysis pipelines.
66
67
 
67
68
  ## Installation
68
69
 
70
+ Install LFKit from PyPI:
71
+
72
+ ```bash
73
+ python -m pip install py-lfkit
74
+ ````
75
+
69
76
  Clone the repository and install it locally:
70
77
 
71
78
  ```bash
@@ -84,7 +91,7 @@ If you use **LFKit** in your research, please cite it.
84
91
  title = {LFKit: Luminosity functions and photometric corrections toolkit},
85
92
  author = {Šarčević, Nikolina},
86
93
  year = {2026},
87
- version = {0.1.0},
94
+ version = {0.1.4},
88
95
  url = {https://github.com/cosmology-kit/lfkit}
89
96
  }
90
97
  ```
@@ -7,6 +7,7 @@
7
7
  [![CI](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/ci.yml?branch=main&label=CI&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/ci.yml)
8
8
  [![Docs](https://img.shields.io/github/actions/workflow/status/cosmology-kit/lfkit/docs.yml?branch=main&label=docs&color=28A8C8&style=flat-square)](https://github.com/cosmology-kit/lfkit/actions/workflows/docs.yml)
9
9
  [![License](https://img.shields.io/github/license/cosmology-kit/lfkit?color=28A8C8&style=flat-square)](LICENSE)
10
+ [![PyPI](https://img.shields.io/pypi/v/py-lfkit?color=28A8C8&style=flat-square)](https://pypi.org/project/py-lfkit/)
10
11
 
11
12
  **LFKit** is a modular Python toolkit for luminosity function modeling, photometric corrections,
12
13
  and related utilities for cosmological analyses.
@@ -36,6 +37,12 @@ into larger analysis pipelines.
36
37
 
37
38
  ## Installation
38
39
 
40
+ Install LFKit from PyPI:
41
+
42
+ ```bash
43
+ python -m pip install py-lfkit
44
+ ````
45
+
39
46
  Clone the repository and install it locally:
40
47
 
41
48
  ```bash
@@ -54,7 +61,7 @@ If you use **LFKit** in your research, please cite it.
54
61
  title = {LFKit: Luminosity functions and photometric corrections toolkit},
55
62
  author = {Šarčević, Nikolina},
56
63
  year = {2026},
57
- version = {0.1.0},
64
+ version = {0.1.4},
58
65
  url = {https://github.com/cosmology-kit/lfkit}
59
66
  }
60
67
  ```
@@ -303,7 +303,7 @@ and normalize the result over the supplied redshift grid.
303
303
  )
304
304
 
305
305
  This is useful for constructing LF-dependent redshift trends.
306
- Without a volume weight, the result is the luminosity-function
306
+ Without a volume weight, the result is the luminosity function
307
307
  selection factor only, not a full survey redshift distribution.
308
308
 
309
309
  A volume-weighted trend can be computed by passing a callable:
@@ -0,0 +1,7 @@
1
+ lfkit.api.conditional\_luminosity\_function module
2
+ ==================================================
3
+
4
+ .. automodule:: lfkit.api.conditional_luminosity_function
5
+ :members:
6
+ :show-inheritance:
7
+ :undoc-members:
@@ -0,0 +1,7 @@
1
+ lfkit.api.luminosity\_function module
2
+ =====================================
3
+
4
+ .. automodule:: lfkit.api.luminosity_function
5
+ :members:
6
+ :show-inheritance:
7
+ :undoc-members:
@@ -7,8 +7,9 @@ Submodules
7
7
  .. toctree::
8
8
  :maxdepth: 2
9
9
 
10
+ lfkit.api.conditional_luminosity_function
10
11
  lfkit.api.corrections
11
- lfkit.api.lumfunc
12
+ lfkit.api.luminosity_function
12
13
 
13
14
  Module contents
14
15
  ---------------
@@ -0,0 +1,7 @@
1
+ lfkit.photometry.conditional\_lf\_integrals module
2
+ ==================================================
3
+
4
+ .. automodule:: lfkit.photometry.conditional_lf_integrals
5
+ :members:
6
+ :show-inheritance:
7
+ :undoc-members:
@@ -0,0 +1,7 @@
1
+ lfkit.photometry.conditional\_lf\_models module
2
+ ===============================================
3
+
4
+ .. automodule:: lfkit.photometry.conditional_lf_models
5
+ :members:
6
+ :show-inheritance:
7
+ :undoc-members:
@@ -8,6 +8,8 @@ Submodules
8
8
  :maxdepth: 2
9
9
 
10
10
  lfkit.photometry.catalog_completeness
11
+ lfkit.photometry.conditional_lf_integrals
12
+ lfkit.photometry.conditional_lf_models
11
13
  lfkit.photometry.lf_integrals
12
14
  lfkit.photometry.lf_parameter_models
13
15
  lfkit.photometry.lf_redshift_density
@@ -0,0 +1,7 @@
1
+ lfkit.utils.integrators module
2
+ ==============================
3
+
4
+ .. automodule:: lfkit.utils.integrators
5
+ :members:
6
+ :show-inheritance:
7
+ :undoc-members:
@@ -9,6 +9,7 @@ Submodules
9
9
 
10
10
  lfkit.utils.download_poggianti97_data
11
11
  lfkit.utils.evaluators
12
+ lfkit.utils.integrators
12
13
  lfkit.utils.interpolation
13
14
  lfkit.utils.io
14
15
  lfkit.utils.types
@@ -64,6 +64,8 @@ napoleon_numpy_docstring = False
64
64
  # -----------------------------------------------------------------------------
65
65
  # HTML output
66
66
  # -----------------------------------------------------------------------------
67
+ html_baseurl = "https://cosmology-kit.github.io/lfkit/"
68
+
67
69
  html_theme = "furo"
68
70
  html_permalinks_icon = "<span>#</span>"
69
71
 
@@ -113,8 +115,11 @@ plot_rcparams = {
113
115
  # Sphinx multiversion
114
116
  # -----------------------------------------------------------------------------
115
117
  smv_tag_whitelist = r"^v\d+\.\d+\.\d+$"
116
- smv_branch_whitelist = "main"
117
-
118
+ smv_branch_whitelist = r"^main$"
119
+ smv_remote_whitelist = r"^origin$"
120
+ smv_released_pattern = r"^refs/tags/v\d+\.\d+\.\d+$"
121
+ smv_outputdir_format = "{ref.name}"
122
+ smv_site_url = "https://cosmology-kit.github.io/lfkit/"
118
123
 
119
124
  # -----------------------------------------------------------------------------
120
125
  # Copybutton configuration