pyimcom 1.2.1__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.
- pyimcom-1.2.1/.copier-answers.yml +24 -0
- pyimcom-1.2.1/.git_archival.txt +4 -0
- pyimcom-1.2.1/.gitattributes +24 -0
- pyimcom-1.2.1/.github/ISSUE_TEMPLATE/0-general_issue.md +8 -0
- pyimcom-1.2.1/.github/ISSUE_TEMPLATE/1-bug_report.md +17 -0
- pyimcom-1.2.1/.github/ISSUE_TEMPLATE/2-feature_request.md +18 -0
- pyimcom-1.2.1/.github/ISSUE_TEMPLATE/README.md +9 -0
- pyimcom-1.2.1/.github/dependabot.yml +10 -0
- pyimcom-1.2.1/.github/pull_request_template.md +63 -0
- pyimcom-1.2.1/.github/workflows/README.md +9 -0
- pyimcom-1.2.1/.github/workflows/build-documentation.yml +36 -0
- pyimcom-1.2.1/.github/workflows/pre-commit-ci.yml +36 -0
- pyimcom-1.2.1/.github/workflows/publish-to-pypi.yml +39 -0
- pyimcom-1.2.1/.github/workflows/smoke-test.yml +58 -0
- pyimcom-1.2.1/.github/workflows/testing-and-coverage.yml +58 -0
- pyimcom-1.2.1/.gitignore +165 -0
- pyimcom-1.2.1/.idea/.gitignore +3 -0
- pyimcom-1.2.1/.idea/inspectionProfiles/profiles_settings.xml +6 -0
- pyimcom-1.2.1/.idea/misc.xml +7 -0
- pyimcom-1.2.1/.idea/modules.xml +8 -0
- pyimcom-1.2.1/.idea/pyimcom.iml +12 -0
- pyimcom-1.2.1/.idea/vcs.xml +6 -0
- pyimcom-1.2.1/.pre-commit-config.yaml +99 -0
- pyimcom-1.2.1/.readthedocs.yml +23 -0
- pyimcom-1.2.1/.setup_dev.sh +51 -0
- pyimcom-1.2.1/LICENSE +21 -0
- pyimcom-1.2.1/PKG-INFO +67 -0
- pyimcom-1.2.1/README.rst +93 -0
- pyimcom-1.2.1/configs/default_config.json +61 -0
- pyimcom-1.2.1/configs/default_config_old.json +66 -0
- pyimcom-1.2.1/configs/imdestripe_configs/config_destripe-H-restart.json +61 -0
- pyimcom-1.2.1/configs/imdestripe_configs/config_destripe-H.json +72 -0
- pyimcom-1.2.1/configs/imdestripe_configs/config_destripe_HL.json +60 -0
- pyimcom-1.2.1/configs/paper3_configs/F184_Chol_config.json +58 -0
- pyimcom-1.2.1/configs/paper3_configs/F184_Empir_config.json +59 -0
- pyimcom-1.2.1/configs/paper3_configs/F184_Iter_config.json +60 -0
- pyimcom-1.2.1/configs/paper3_configs/H158_Chol_config.json +58 -0
- pyimcom-1.2.1/configs/paper3_configs/H158_Empir_config.json +59 -0
- pyimcom-1.2.1/configs/paper3_configs/H158_Iter_config.json +60 -0
- pyimcom-1.2.1/configs/paper3_configs/J129_Chol_config.json +58 -0
- pyimcom-1.2.1/configs/paper3_configs/J129_Empir_config.json +59 -0
- pyimcom-1.2.1/configs/paper3_configs/J129_Iter_config.json +60 -0
- pyimcom-1.2.1/configs/paper3_configs/Y106_Chol_config.json +58 -0
- pyimcom-1.2.1/configs/paper3_configs/Y106_Empir_config.json +59 -0
- pyimcom-1.2.1/configs/paper3_configs/Y106_Iter_config.json +60 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_airyobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_airyunobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_amppen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_benchmark.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_flatpen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_gauss_0.8x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_gauss_1.2x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_inpad=0.76.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_inpad=1.00.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_kappac_3x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_kappac_9x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_psfcirc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Chol_psfnorm.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_airyobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_airyunobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_amppen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_benchmark.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_flatpen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_gauss_0.8x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_gauss_1.2x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_inpad=0.45.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_inpad=0.75.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_psfcirc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_psfnorm.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_rtol=4.5e-3.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/F184_Iter_rtol=5.0e-4.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_airyobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_airyunobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_amppen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_benchmark.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_flatpen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_gauss_0.8x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_gauss_1.2x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_inpad=0.76.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_inpad=1.00.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_kappac_3x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_kappac_9x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_psfcirc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Chol_psfnorm.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_airyobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_airyunobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_amppen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_benchmark.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_flatpen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_gauss_0.8x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_gauss_1.2x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_inpad=0.45.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_inpad=0.75.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_psfcirc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_psfnorm.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_rtol=4.5e-3.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/H158_Iter_rtol=5.0e-4.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_airyobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_airyunobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_amppen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_benchmark.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_flatpen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_gauss_0.8x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_gauss_1.2x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_inpad=0.76.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_inpad=1.00.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_kappac_3x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_kappac_9x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_psfcirc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Chol_psfnorm.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_airyobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_airyunobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_amppen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_benchmark.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_flatpen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_gauss_0.8x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_gauss_1.2x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_inpad=0.45.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_inpad=0.75.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_psfcirc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_psfnorm.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_rtol=4.5e-3.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/J129_Iter_rtol=5.0e-4.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_airyobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_airyunobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_amppen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_benchmark.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_flatpen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_gauss_0.8x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_gauss_1.2x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_inpad=0.76.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_inpad=1.00.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_kappac_3x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_kappac_9x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_psfcirc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Chol_psfnorm.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_airyobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_airyunobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_amppen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_benchmark.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_flatpen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_gauss_0.8x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_gauss_1.2x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_inpad=0.45.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_inpad=0.75.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_psfcirc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_psfnorm.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_rtol=4.5e-3.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/K213_Iter_rtol=5.0e-4.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_airyobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_airyunobsc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_amppen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_benchmark.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_flatpen.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_gauss_0.8x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_gauss_1.2x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_inpad=0.76.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_inpad=1.00.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_kappac_3x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_kappac_9x.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_psfcirc.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Chol_psfnorm.json +59 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_airyobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_airyunobsc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_amppen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_benchmark.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_flatpen.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_gauss_0.8x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_gauss_1.2x.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_inpad=0.45.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_inpad=0.75.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_psfcirc.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_psfnorm.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_rtol=4.5e-3.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/Y106_Iter_rtol=5.0e-4.json +61 -0
- pyimcom-1.2.1/configs/paper4_configs/paper4_production.ipynb +591 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/anlsim/Roman_WAS_obseq_11_1_23.fits +0 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/anlsim/make_labnoise_symlink_osc.pl +32 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/config_prod-F.json +46 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/config_prod-H.json +46 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/config_prod-J.json +46 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/config_prod-K.json +46 -0
- pyimcom-1.2.1/configs/production_configs_spring2024/config_prod-Y.json +46 -0
- pyimcom-1.2.1/docs/Makefile +26 -0
- pyimcom-1.2.1/docs/compress_README.rst +134 -0
- pyimcom-1.2.1/docs/conf.py +57 -0
- pyimcom-1.2.1/docs/config_README.rst +550 -0
- pyimcom-1.2.1/docs/destripe_README.rst +219 -0
- pyimcom-1.2.1/docs/destriping_flowchart.png +0 -0
- pyimcom-1.2.1/docs/diagnostics_README.rst +95 -0
- pyimcom-1.2.1/docs/hierarchy.rst +31 -0
- pyimcom-1.2.1/docs/index.rst +51 -0
- pyimcom-1.2.1/docs/input_README.rst +103 -0
- pyimcom-1.2.1/docs/meta_README.rst +195 -0
- pyimcom-1.2.1/docs/notebooks/README.md +25 -0
- pyimcom-1.2.1/docs/output_README.rst +58 -0
- pyimcom-1.2.1/docs/pre_executed/README.md +16 -0
- pyimcom-1.2.1/docs/psf_flowchart.png +0 -0
- pyimcom-1.2.1/docs/report_README.rst +113 -0
- pyimcom-1.2.1/docs/requirements.txt +5 -0
- pyimcom-1.2.1/docs/run_README.rst +108 -0
- pyimcom-1.2.1/docs/splitpsf_README.rst +132 -0
- pyimcom-1.2.1/docs/tilefig.png +0 -0
- pyimcom-1.2.1/examples/illustration.ipynb +212 -0
- pyimcom-1.2.1/examples/multiblock_norep.pl +72 -0
- pyimcom-1.2.1/examples/multiblock_paper4.pl +72 -0
- pyimcom-1.2.1/examples/read_and_shear_output_from_web.py +85 -0
- pyimcom-1.2.1/examples/run_pyimcom.py +20 -0
- pyimcom-1.2.1/examples/run_pyimcom_oscrun1.py +36 -0
- pyimcom-1.2.1/historical/OpenUniverse2024/README.rst +67 -0
- pyimcom-1.2.1/historical/OpenUniverse2024/genpsf.py +91 -0
- pyimcom-1.2.1/pyproject.toml +105 -0
- pyimcom-1.2.1/requirements-dev.txt +9 -0
- pyimcom-1.2.1/requirements.txt +20 -0
- pyimcom-1.2.1/scripts/correlation.py +413 -0
- pyimcom-1.2.1/scripts/make_picture_1band.py +74 -0
- pyimcom-1.2.1/scripts/writejob_example.pl +199 -0
- pyimcom-1.2.1/setup.cfg +4 -0
- pyimcom-1.2.1/src/pyimcom/__init__.py +1 -0
- pyimcom-1.2.1/src/pyimcom/_version.py +24 -0
- pyimcom-1.2.1/src/pyimcom/analysis.py +1480 -0
- pyimcom-1.2.1/src/pyimcom/coadd.py +2331 -0
- pyimcom-1.2.1/src/pyimcom/compress/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/compress/compressutils.py +506 -0
- pyimcom-1.2.1/src/pyimcom/compress/compressutils_wrapper.py +116 -0
- pyimcom-1.2.1/src/pyimcom/compress/i24.py +514 -0
- pyimcom-1.2.1/src/pyimcom/config.py +1245 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/context_figure.py +58 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/dynrange.py +274 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/layer_diagnostics.py +208 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/mosaicimage.py +80 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/noise/stability.py +126 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/noise_diagnostics.py +709 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/outimage_utils/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/outimage_utils/helper.py +82 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/report.py +366 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/run.py +64 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/starcube_nonoise.py +264 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/starcube_nonoise_coldescr.txt +24 -0
- pyimcom-1.2.1/src/pyimcom/diagnostics/stars.py +469 -0
- pyimcom-1.2.1/src/pyimcom/imdestripe.py +2454 -0
- pyimcom-1.2.1/src/pyimcom/lakernel.py +805 -0
- pyimcom-1.2.1/src/pyimcom/layer.py +1439 -0
- pyimcom-1.2.1/src/pyimcom/layer_wrapper.py +96 -0
- pyimcom-1.2.1/src/pyimcom/meta/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/meta/distortimage.py +748 -0
- pyimcom-1.2.1/src/pyimcom/meta/ginterp.py +340 -0
- pyimcom-1.2.1/src/pyimcom/pictures/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/pictures/genpic.py +229 -0
- pyimcom-1.2.1/src/pyimcom/psfutil.py +2199 -0
- pyimcom-1.2.1/src/pyimcom/routine.py +588 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/imsubtract.py +793 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/imsubtract_wrapper.py +107 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/splitpsf.py +497 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/splitpsf_wrapper.py +161 -0
- pyimcom-1.2.1/src/pyimcom/splitpsf/update_cube.py +136 -0
- pyimcom-1.2.1/src/pyimcom/truthcats.py +396 -0
- pyimcom-1.2.1/src/pyimcom/utils/__init__.py +0 -0
- pyimcom-1.2.1/src/pyimcom/utils/compareutils.py +207 -0
- pyimcom-1.2.1/src/pyimcom/utils/piffutils.py +223 -0
- pyimcom-1.2.1/src/pyimcom/wcsutil.py +839 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/PKG-INFO +67 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/SOURCES.txt +289 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/dependency_links.txt +1 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/requires.txt +31 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/scm_file_list.json +285 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/scm_version.json +8 -0
- pyimcom-1.2.1/src/pyimcom.egg-info/top_level.txt +1 -0
- pyimcom-1.2.1/tests/__init__.py +0 -0
- pyimcom-1.2.1/tests/pyimcom/__init__.py +0 -0
- pyimcom-1.2.1/tests/pyimcom/conftest.py +249 -0
- pyimcom-1.2.1/tests/pyimcom/test_allpsfsplit.py +141 -0
- pyimcom-1.2.1/tests/pyimcom/test_cfg.py +238 -0
- pyimcom-1.2.1/tests/pyimcom/test_cprs.py +183 -0
- pyimcom-1.2.1/tests/pyimcom/test_fname.py +17 -0
- pyimcom-1.2.1/tests/pyimcom/test_imdestripe.py +1376 -0
- pyimcom-1.2.1/tests/pyimcom/test_imsubtract.py +414 -0
- pyimcom-1.2.1/tests/pyimcom/test_integratedimdestripe.py +326 -0
- pyimcom-1.2.1/tests/pyimcom/test_la.py +230 -0
- pyimcom-1.2.1/tests/pyimcom/test_meta.py +187 -0
- pyimcom-1.2.1/tests/pyimcom/test_missing.py +23 -0
- pyimcom-1.2.1/tests/pyimcom/test_piff.py +278 -0
- pyimcom-1.2.1/tests/pyimcom/test_psf.py +82 -0
- pyimcom-1.2.1/tests/pyimcom/test_pyimcom.py +1226 -0
- pyimcom-1.2.1/tests/pyimcom/test_routine.py +156 -0
- pyimcom-1.2.1/tests/pyimcom/test_splitpsf_driver.py +148 -0
- pyimcom-1.2.1/tests/pyimcom/test_updatecube.py +160 -0
- pyimcom-1.2.1/tests/pyimcom/test_utils.py +195 -0
- pyimcom-1.2.1/tests/pyimcom/test_wcs.py +118 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changes here will be overwritten by Copier
|
|
2
|
+
_commit: v2.0.7
|
|
3
|
+
_src_path: gh:lincc-frameworks/python-project-template
|
|
4
|
+
author_email: cao.1191@osu.edu
|
|
5
|
+
author_name: Kaili Cao
|
|
6
|
+
create_example_module: false
|
|
7
|
+
custom_install: true
|
|
8
|
+
enforce_style:
|
|
9
|
+
- ruff_lint
|
|
10
|
+
- ruff_format
|
|
11
|
+
failure_notification: []
|
|
12
|
+
include_benchmarks: false
|
|
13
|
+
include_docs: true
|
|
14
|
+
include_notebooks: false
|
|
15
|
+
mypy_type_checking: none
|
|
16
|
+
package_name: pyimcom
|
|
17
|
+
project_license: none
|
|
18
|
+
project_name: pyimcom
|
|
19
|
+
project_organization: Roman-HLIS-Cosmology-PIT
|
|
20
|
+
python_versions:
|
|
21
|
+
- '3.11'
|
|
22
|
+
- '3.12'
|
|
23
|
+
- '3.13'
|
|
24
|
+
test_lowest_version: none
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# For explanation of this file and uses see
|
|
2
|
+
# https://git-scm.com/docs/gitattributes
|
|
3
|
+
# https://developer.lsst.io/git/git-lfs.html#using-git-lfs-enabled-repositories
|
|
4
|
+
# https://lincc-ppt.readthedocs.io/en/latest/practices/git-lfs.html
|
|
5
|
+
#
|
|
6
|
+
# Used by https://github.com/lsst/afwdata.git
|
|
7
|
+
# *.boost filter=lfs diff=lfs merge=lfs -text
|
|
8
|
+
# *.dat filter=lfs diff=lfs merge=lfs -text
|
|
9
|
+
# *.fits filter=lfs diff=lfs merge=lfs -text
|
|
10
|
+
# *.gz filter=lfs diff=lfs merge=lfs -text
|
|
11
|
+
#
|
|
12
|
+
# apache parquet files
|
|
13
|
+
# *.parq filter=lfs diff=lfs merge=lfs -text
|
|
14
|
+
#
|
|
15
|
+
# sqlite files
|
|
16
|
+
# *.sqlite3 filter=lfs diff=lfs merge=lfs -text
|
|
17
|
+
#
|
|
18
|
+
# gzip files
|
|
19
|
+
# *.gz filter=lfs diff=lfs merge=lfs -text
|
|
20
|
+
#
|
|
21
|
+
# png image files
|
|
22
|
+
# *.png filter=lfs diff=lfs merge=lfs -text
|
|
23
|
+
|
|
24
|
+
.git_archival.txt export-subst
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Tell us about a problem to fix
|
|
4
|
+
title: 'Short description'
|
|
5
|
+
labels: 'bug'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
**Bug report**
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
**Before submitting**
|
|
13
|
+
Please check the following:
|
|
14
|
+
|
|
15
|
+
- [ ] I have described the situation in which the bug arose, including what code was executed, information about my environment, and any applicable data others will need to reproduce the problem.
|
|
16
|
+
- [ ] I have included available evidence of the unexpected behavior (including error messages, screenshots, and/or plots) as well as a description of what I expected instead.
|
|
17
|
+
- [ ] If I have a solution in mind, I have provided an explanation and/or pseudocode and/or task list.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project
|
|
4
|
+
title: 'Short description'
|
|
5
|
+
labels: 'enhancement'
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Feature request**
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
**Before submitting**
|
|
14
|
+
Please check the following:
|
|
15
|
+
|
|
16
|
+
- [ ] I have described the purpose of the suggested change, specifying what I need the enhancement to accomplish, i.e. what problem it solves.
|
|
17
|
+
- [ ] I have included any relevant links, screenshots, environment information, and data relevant to implementing the requested feature, as well as pseudocode for how I want to access the new functionality.
|
|
18
|
+
- [ ] If I have ideas for how the new feature could be implemented, I have provided explanations and/or pseudocode and/or task lists for the steps.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Configurations
|
|
2
|
+
|
|
3
|
+
Templates for various different issue types are defined in this directory
|
|
4
|
+
and a pull request template is defined as ``../pull_request_template.md``. Adding,
|
|
5
|
+
removing, and modifying these templates to suit the needs of your project is encouraged.
|
|
6
|
+
|
|
7
|
+
For more information about these templates, look here: https://lincc-ppt.readthedocs.io/en/latest/practices/issue_pr_templating.html
|
|
8
|
+
|
|
9
|
+
Or if you still have questions contact us: https://lincc-ppt.readthedocs.io/en/latest/source/contact.html
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Thank you for your contribution to the repo :)
|
|
3
|
+
|
|
4
|
+
Pull Request (PR) Instructions:
|
|
5
|
+
Provide a general summary of your changes in the Title above. Fill out each section of the template, and replace the space with an `x` in all the boxes that apply. If you're unsure about any of these, don't hesitate to ask. We're here to help! Once you are satisfied with the pull request, click the "Create pull request" button to submit it for review.
|
|
6
|
+
|
|
7
|
+
Before submitting this PR, please ensure that your input and responses are entered in the designated space provided below each section to keep all project-related information organized and easily accessible.
|
|
8
|
+
|
|
9
|
+
How to link to a PR:
|
|
10
|
+
https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue
|
|
11
|
+
-->
|
|
12
|
+
|
|
13
|
+
## Change Description
|
|
14
|
+
<!---
|
|
15
|
+
Describe your changes in detail. In your description, you should answer questions like "Why is this change required? What problem does it solve?".
|
|
16
|
+
|
|
17
|
+
If it fixes an open issue, please link to the issue here. If this PR closes an issue, put the word 'closes' before the issue link to auto-close the issue when the PR is merged.
|
|
18
|
+
-->
|
|
19
|
+
- [ ] My PR includes a link to the issue that I am addressing
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## Solution Description
|
|
24
|
+
<!-- Please explain the technical solution that I have provided and how it addresses the issue or feature being implemented -->
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Code Quality
|
|
29
|
+
- [ ] I have read the Contribution Guide
|
|
30
|
+
- [ ] My code follows the code style of this project
|
|
31
|
+
- [ ] My code builds (or compiles) cleanly without any errors or warnings
|
|
32
|
+
- [ ] My code contains relevant comments and necessary documentation
|
|
33
|
+
|
|
34
|
+
## Project-Specific Pull Request Checklists
|
|
35
|
+
<!--- Please only use the checklist that apply to your change type(s) -->
|
|
36
|
+
|
|
37
|
+
### Bug Fix Checklist
|
|
38
|
+
- [ ] My fix includes a new test that breaks as a result of the bug (if possible)
|
|
39
|
+
- [ ] My change includes a breaking change
|
|
40
|
+
- [ ] My change includes backwards compatibility and deprecation warnings (if possible)
|
|
41
|
+
|
|
42
|
+
### New Feature Checklist
|
|
43
|
+
- [ ] I have added or updated the docstrings associated with my feature using the [NumPy docstring format](https://numpydoc.readthedocs.io/en/latest/format.html)
|
|
44
|
+
- [ ] I have updated the tutorial to highlight my new feature (if appropriate)
|
|
45
|
+
- [ ] I have added unit/End-to-End (E2E) test cases to cover my new feature
|
|
46
|
+
- [ ] My change includes a breaking change
|
|
47
|
+
- [ ] My change includes backwards compatibility and deprecation warnings (if possible)
|
|
48
|
+
|
|
49
|
+
### Documentation Change Checklist
|
|
50
|
+
- [ ] Any updated docstrings use the [NumPy docstring format](https://numpydoc.readthedocs.io/en/latest/format.html)
|
|
51
|
+
|
|
52
|
+
### Build/CI Change Checklist
|
|
53
|
+
- [ ] If required or optional dependencies have changed (including version numbers), I have updated the README to reflect this
|
|
54
|
+
- [ ] If this is a new CI setup, I have added the associated badge to the README
|
|
55
|
+
|
|
56
|
+
<!-- ### Version Change Checklist [For Future Use] -->
|
|
57
|
+
|
|
58
|
+
### Other Change Checklist
|
|
59
|
+
- [ ] Any new or updated docstrings use the [NumPy docstring format](https://numpydoc.readthedocs.io/en/latest/format.html).
|
|
60
|
+
- [ ] I have updated the tutorial to highlight my new feature (if appropriate)
|
|
61
|
+
- [ ] I have added unit/End-to-End (E2E) test cases to cover any changes
|
|
62
|
+
- [ ] My change includes a breaking change
|
|
63
|
+
- [ ] My change includes backwards compatibility and deprecation warnings (if possible)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Workflows
|
|
2
|
+
|
|
3
|
+
The .yml files in this directory are used to define the various continuous
|
|
4
|
+
integration scripts that will be run on your behalf e.g. nightly as a smoke check,
|
|
5
|
+
or when you create a new PR.
|
|
6
|
+
|
|
7
|
+
For more information about CI and workflows, look here: https://lincc-ppt.readthedocs.io/en/latest/practices/ci.html
|
|
8
|
+
|
|
9
|
+
Or if you still have questions contact us: https://lincc-ppt.readthedocs.io/en/latest/source/contact.html
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
# This workflow will install Python dependencies, build the package and then build the documentation.
|
|
3
|
+
|
|
4
|
+
name: Build documentation
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
push:
|
|
9
|
+
branches: [ main ]
|
|
10
|
+
pull_request:
|
|
11
|
+
branches: [ main ]
|
|
12
|
+
|
|
13
|
+
concurrency:
|
|
14
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
15
|
+
cancel-in-progress: true
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
build:
|
|
19
|
+
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v6
|
|
24
|
+
- name: Set up Python 3.12
|
|
25
|
+
uses: actions/setup-python@v6
|
|
26
|
+
with:
|
|
27
|
+
python-version: '3.12'
|
|
28
|
+
- name: Install dependencies
|
|
29
|
+
run: |
|
|
30
|
+
sudo apt-get update
|
|
31
|
+
python -m pip install --upgrade pip
|
|
32
|
+
if [ -f docs/requirements.txt ]; then pip install -r docs/requirements.txt; fi
|
|
33
|
+
pip install .
|
|
34
|
+
- name: Build docs
|
|
35
|
+
run: |
|
|
36
|
+
sphinx-build -T -E -b html -d docs/build/doctrees ./docs docs/build/html
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
# This workflow runs pre-commit hooks on pushes and pull requests to main
|
|
3
|
+
# to enforce coding style. To ensure correct configuration, please refer to:
|
|
4
|
+
# https://lincc-ppt.readthedocs.io/en/latest/practices/ci_precommit.html
|
|
5
|
+
name: Run pre-commit hooks
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
push:
|
|
9
|
+
branches: [ main ]
|
|
10
|
+
pull_request:
|
|
11
|
+
branches: [ main ]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
pre-commit-ci:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v6
|
|
18
|
+
with:
|
|
19
|
+
fetch-depth: 0
|
|
20
|
+
- name: Set up Python
|
|
21
|
+
uses: actions/setup-python@v6
|
|
22
|
+
with:
|
|
23
|
+
python-version: '3.12'
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: |
|
|
26
|
+
sudo apt-get update
|
|
27
|
+
python -m pip install --upgrade pip
|
|
28
|
+
pip install .[dev]
|
|
29
|
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
30
|
+
- uses: pre-commit/action@v3.0.1
|
|
31
|
+
with:
|
|
32
|
+
extra_args: --all-files --verbose
|
|
33
|
+
env:
|
|
34
|
+
SKIP: "check-lincc-frameworks-template-version,no-commit-to-branch,check-added-large-files,validate-pyproject,sphinx-build,pytest-check"
|
|
35
|
+
- uses: pre-commit-ci/lite-action@v1.1.0
|
|
36
|
+
if: failure() && github.event_name == 'pull_request' && github.event.pull_request.draft == false
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
# This workflow will upload a Python Package using Twine when a release is created
|
|
3
|
+
# For more information see: https://github.com/pypa/gh-action-pypi-publish#trusted-publishing
|
|
4
|
+
|
|
5
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
6
|
+
# They are provided by a third-party and are governed by
|
|
7
|
+
# separate terms of service, privacy policy, and support
|
|
8
|
+
# documentation.
|
|
9
|
+
|
|
10
|
+
name: Upload Python Package
|
|
11
|
+
|
|
12
|
+
on:
|
|
13
|
+
release:
|
|
14
|
+
types: [published]
|
|
15
|
+
workflow_dispatch:
|
|
16
|
+
|
|
17
|
+
permissions:
|
|
18
|
+
contents: read
|
|
19
|
+
|
|
20
|
+
jobs:
|
|
21
|
+
deploy:
|
|
22
|
+
|
|
23
|
+
runs-on: ubuntu-latest
|
|
24
|
+
permissions:
|
|
25
|
+
id-token: write
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v6
|
|
28
|
+
- name: Set up Python
|
|
29
|
+
uses: actions/setup-python@v6
|
|
30
|
+
with:
|
|
31
|
+
python-version: '3.12'
|
|
32
|
+
- name: Install dependencies
|
|
33
|
+
run: |
|
|
34
|
+
python -m pip install --upgrade pip
|
|
35
|
+
pip install build
|
|
36
|
+
- name: Build package
|
|
37
|
+
run: python -m build
|
|
38
|
+
- name: Publish package
|
|
39
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# This workflow will run 3 days per week at 06:00.
|
|
2
|
+
# It will install Python dependencies and run tests with a variety of Python versions.
|
|
3
|
+
# See documentation for help debugging smoke test issues:
|
|
4
|
+
# https://lincc-ppt.readthedocs.io/en/latest/practices/ci_testing.html#version-culprit
|
|
5
|
+
|
|
6
|
+
name: Unit test smoke test
|
|
7
|
+
|
|
8
|
+
on:
|
|
9
|
+
|
|
10
|
+
# Runs this workflow automatically
|
|
11
|
+
schedule:
|
|
12
|
+
- cron: 0 6 * * 1,3,5
|
|
13
|
+
|
|
14
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
15
|
+
workflow_dispatch:
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
build:
|
|
19
|
+
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
strategy:
|
|
22
|
+
matrix:
|
|
23
|
+
python-version: ['3.12', '3.13', '3.14']
|
|
24
|
+
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/checkout@v6
|
|
27
|
+
- name: Install TeX Live packages
|
|
28
|
+
run: |
|
|
29
|
+
sudo apt-get update -y
|
|
30
|
+
sudo apt-get install -y \
|
|
31
|
+
dvipng \
|
|
32
|
+
texlive-base \
|
|
33
|
+
texlive-latex-base \
|
|
34
|
+
texlive-latex-recommended \
|
|
35
|
+
texlive-latex-extra \
|
|
36
|
+
texlive-fonts-recommended \
|
|
37
|
+
latexmk \
|
|
38
|
+
lmodern \
|
|
39
|
+
cm-super
|
|
40
|
+
# use apt-get for ubuntu
|
|
41
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
42
|
+
uses: actions/setup-python@v6
|
|
43
|
+
with:
|
|
44
|
+
python-version: ${{ matrix.python-version }}
|
|
45
|
+
- name: Install dependencies
|
|
46
|
+
run: |
|
|
47
|
+
sudo apt-get update
|
|
48
|
+
python -m pip install --upgrade pip
|
|
49
|
+
pip install -e .[dev]
|
|
50
|
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
51
|
+
pip install git+https://github.com/rmjarvis/Piff@main
|
|
52
|
+
# test with main branch of Piff
|
|
53
|
+
- name: List dependencies
|
|
54
|
+
run: |
|
|
55
|
+
pip list
|
|
56
|
+
- name: Run unit tests with pytest
|
|
57
|
+
run: |
|
|
58
|
+
python -m pytest
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
|
|
2
|
+
# This workflow will install Python dependencies, run tests and report code coverage with a variety of Python versions
|
|
3
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
4
|
+
|
|
5
|
+
name: Unit test and code coverage
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
push:
|
|
9
|
+
branches: [ main ]
|
|
10
|
+
pull_request:
|
|
11
|
+
branches: [ main ]
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build:
|
|
15
|
+
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
strategy:
|
|
18
|
+
matrix:
|
|
19
|
+
python-version: ['3.12', '3.13', '3.14']
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v6
|
|
23
|
+
- name: Install TeX Live packages
|
|
24
|
+
run: |
|
|
25
|
+
sudo apt-get update -y
|
|
26
|
+
sudo apt-get install -y \
|
|
27
|
+
dvipng \
|
|
28
|
+
texlive-base \
|
|
29
|
+
texlive-latex-base \
|
|
30
|
+
texlive-latex-recommended \
|
|
31
|
+
texlive-latex-extra \
|
|
32
|
+
texlive-fonts-recommended \
|
|
33
|
+
latexmk \
|
|
34
|
+
lmodern \
|
|
35
|
+
cm-super
|
|
36
|
+
# use apt-get for ubuntu
|
|
37
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
38
|
+
uses: actions/setup-python@v6
|
|
39
|
+
with:
|
|
40
|
+
python-version: ${{ matrix.python-version }}
|
|
41
|
+
- name: Install dependencies
|
|
42
|
+
run: |
|
|
43
|
+
sudo apt-get update
|
|
44
|
+
sudo apt-get install -y libfftw3-dev
|
|
45
|
+
python -m pip install --upgrade pip
|
|
46
|
+
pip install -e .[dev]
|
|
47
|
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
48
|
+
pip install git+https://github.com/rmjarvis/Piff@main
|
|
49
|
+
# test with main branch of Piff
|
|
50
|
+
- name: Run unit tests with pytest
|
|
51
|
+
run: |
|
|
52
|
+
NUMBA_DISABLE_JIT=1 python -m pytest --cov=pyimcom --cov-report=xml
|
|
53
|
+
# njit is disabled so the lines coverage in those functions is tracked
|
|
54
|
+
- name: Upload coverage report to codecov
|
|
55
|
+
uses: codecov/codecov-action@v6
|
|
56
|
+
with:
|
|
57
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
58
|
+
slug: Roman-HLIS-Cosmology-PIT/pyimcom
|
pyimcom-1.2.1/.gitignore
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
_version.py
|
|
30
|
+
|
|
31
|
+
# PyInstaller
|
|
32
|
+
# Usually these files are written by a python script from a template
|
|
33
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
34
|
+
*.manifest
|
|
35
|
+
*.spec
|
|
36
|
+
|
|
37
|
+
# Installer logs
|
|
38
|
+
pip-log.txt
|
|
39
|
+
pip-delete-this-directory.txt
|
|
40
|
+
|
|
41
|
+
# Unit test / coverage reports
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
.nox/
|
|
45
|
+
.coverage
|
|
46
|
+
.coverage.*
|
|
47
|
+
.cache
|
|
48
|
+
nosetests.xml
|
|
49
|
+
coverage.xml
|
|
50
|
+
*.cover
|
|
51
|
+
*.py,cover
|
|
52
|
+
.hypothesis/
|
|
53
|
+
.pytest_cache/
|
|
54
|
+
|
|
55
|
+
# Translations
|
|
56
|
+
*.mo
|
|
57
|
+
*.pot
|
|
58
|
+
|
|
59
|
+
# Django stuff:
|
|
60
|
+
*.log
|
|
61
|
+
local_settings.py
|
|
62
|
+
db.sqlite3
|
|
63
|
+
db.sqlite3-journal
|
|
64
|
+
|
|
65
|
+
# Flask stuff:
|
|
66
|
+
instance/
|
|
67
|
+
.webassets-cache
|
|
68
|
+
|
|
69
|
+
# Scrapy stuff:
|
|
70
|
+
.scrapy
|
|
71
|
+
|
|
72
|
+
# Sphinx documentation
|
|
73
|
+
docs/_build/
|
|
74
|
+
_readthedocs/
|
|
75
|
+
|
|
76
|
+
# PyBuilder
|
|
77
|
+
target/
|
|
78
|
+
|
|
79
|
+
# Jupyter Notebook
|
|
80
|
+
.ipynb_checkpoints
|
|
81
|
+
|
|
82
|
+
# IPython
|
|
83
|
+
profile_default/
|
|
84
|
+
ipython_config.py
|
|
85
|
+
|
|
86
|
+
# pyenv
|
|
87
|
+
.python-version
|
|
88
|
+
|
|
89
|
+
# pipenv
|
|
90
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
91
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
92
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
93
|
+
# install all needed dependencies.
|
|
94
|
+
#Pipfile.lock
|
|
95
|
+
|
|
96
|
+
# poetry
|
|
97
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
98
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
99
|
+
# commonly ignored for libraries.
|
|
100
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
101
|
+
#poetry.lock
|
|
102
|
+
|
|
103
|
+
# pdm
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
105
|
+
#pdm.lock
|
|
106
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
107
|
+
# in version control.
|
|
108
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
109
|
+
.pdm.toml
|
|
110
|
+
|
|
111
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
112
|
+
__pypackages__/
|
|
113
|
+
|
|
114
|
+
# Celery stuff
|
|
115
|
+
celerybeat-schedule
|
|
116
|
+
celerybeat.pid
|
|
117
|
+
|
|
118
|
+
# SageMath parsed files
|
|
119
|
+
*.sage.py
|
|
120
|
+
|
|
121
|
+
# Environments
|
|
122
|
+
.env
|
|
123
|
+
.venv
|
|
124
|
+
env/
|
|
125
|
+
venv/
|
|
126
|
+
ENV/
|
|
127
|
+
env.bak/
|
|
128
|
+
venv.bak/
|
|
129
|
+
|
|
130
|
+
# Spyder project settings
|
|
131
|
+
.spyderproject
|
|
132
|
+
.spyproject
|
|
133
|
+
|
|
134
|
+
# Rope project settings
|
|
135
|
+
.ropeproject
|
|
136
|
+
|
|
137
|
+
# mkdocs documentation
|
|
138
|
+
/site
|
|
139
|
+
|
|
140
|
+
# mypy
|
|
141
|
+
.mypy_cache/
|
|
142
|
+
.dmypy.json
|
|
143
|
+
dmypy.json
|
|
144
|
+
|
|
145
|
+
# Pyre type checker
|
|
146
|
+
.pyre/
|
|
147
|
+
|
|
148
|
+
# vscode
|
|
149
|
+
.vscode/
|
|
150
|
+
|
|
151
|
+
# dask
|
|
152
|
+
dask-worker-space/
|
|
153
|
+
|
|
154
|
+
# tmp directory
|
|
155
|
+
tmp/
|
|
156
|
+
|
|
157
|
+
# Mac OS
|
|
158
|
+
.DS_Store
|
|
159
|
+
|
|
160
|
+
# Airspeed Velocity performance results
|
|
161
|
+
_results/
|
|
162
|
+
_html/
|
|
163
|
+
|
|
164
|
+
# Project initialization script
|
|
165
|
+
.initialize_new_project.sh
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Python 3.8" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.8" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
|
5
|
+
<orderEntry type="jdk" jdkName="Python 3.8" jdkType="Python SDK" />
|
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
+
</component>
|
|
8
|
+
<component name="PyDocumentationSettings">
|
|
9
|
+
<option name="format" value="NUMPY" />
|
|
10
|
+
<option name="myDocStringFormat" value="NumPy" />
|
|
11
|
+
</component>
|
|
12
|
+
</module>
|