gitextract_q5jmbpat/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── testing-and-deployment.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc/ │ ├── Makefile │ ├── _templates/ │ │ └── autosummary/ │ │ └── class.rst │ ├── api.rst │ ├── conf.py │ └── index.rst ├── examples/ │ ├── README.txt │ ├── replay.py │ └── simplify.py ├── fast_simplification/ │ ├── Replay.h │ ├── Simplify.h │ ├── __init__.py │ ├── _replay.pyx │ ├── _simplify.pyx │ ├── _version.py │ ├── fast_simplification.py │ ├── replay.py │ ├── simplify.py │ ├── utils.py │ ├── wrapper.h │ └── wrapper_replay.h ├── pyproject.toml ├── pytest.ini ├── requirements_docs.txt ├── requirements_test.txt ├── setup.py ├── tests/ │ ├── test_map_isolated_points.py │ ├── test_replay.py │ └── test_simplify.py └── tools/ └── audit_wheel.sh