gitextract_54cmwk4y/ ├── .clang-format ├── .github/ │ └── workflows/ │ ├── build-wheels-upload-pypi.yml │ └── python-package-tox.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGES.md ├── CMakeLists.txt ├── FindSEP.cmake ├── MANIFEST.in ├── Makefile ├── README.md ├── bench.py ├── codemeta.json ├── ctest/ │ ├── compare.py │ └── test_image.c ├── data/ │ ├── README.md │ ├── back.fits │ ├── default.conv │ ├── default.nnw │ ├── default.param │ ├── default.sex │ ├── image.cat │ ├── image.fits │ └── rms.fits ├── docs/ │ ├── Makefile │ ├── apertures.rst │ ├── changelogs/ │ │ ├── changelog.rst │ │ ├── changes_to_c_api.rst │ │ ├── new_changes.rst │ │ └── original_changes.md │ ├── conf.py │ ├── filter.rst │ ├── index.rst │ ├── reference.rst │ ├── rtd-pip-requirements │ └── tutorial.ipynb ├── licenses/ │ ├── BSD_LICENSE.txt │ ├── LGPL_LICENSE.txt │ └── MIT_LICENSE.txt ├── paper/ │ ├── paper.bib │ └── paper.md ├── pyproject.toml ├── sep.pyx ├── setup.py ├── src/ │ ├── analyse.c │ ├── aperture.c │ ├── aperture.i │ ├── background.c │ ├── convolve.c │ ├── deblend.c │ ├── extract.c │ ├── extract.h │ ├── lutz.c │ ├── overlap.h │ ├── sep.h │ ├── sepcore.h │ └── util.c ├── test.py └── tox.ini