gitextract_n_5c9fyh/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── build_wheel.yml │ └── test.yml ├── .gitignore ├── AUTHORS ├── CITATION.cff ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.md ├── automated_test.py ├── benchmarks/ │ ├── README.md │ ├── benchmark.py │ └── kimimaro.numbers ├── build_linux.sh ├── ext/ │ └── skeletontricks/ │ ├── dijkstra_invalidation.hpp │ ├── libdivide.h │ ├── skeletontricks.hpp │ ├── skeletontricks.pyx │ └── unordered_dense.hpp ├── kimimaro/ │ ├── __init__.py │ ├── intake.py │ ├── post.py │ ├── sharedmemory.py │ ├── trace.py │ └── utility.py ├── kimimaro_cli/ │ ├── LICENSE │ ├── __init__.py │ └── codecs.py ├── manual_testing/ │ └── manual_test.py ├── manylinux2010.Dockerfile ├── manylinux2014.Dockerfile ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tox.ini