gitextract_8y6y_8sa/ ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ ├── build_and_test.yml │ └── pypi-publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── README.rst ├── hitherdither/ │ ├── __init__.py │ ├── __version__.py │ ├── data/ │ │ └── __init__.py │ ├── diffusion.py │ ├── exceptions.py │ ├── math/ │ │ └── __init__.py │ ├── ordered/ │ │ ├── __init__.py │ │ ├── bayer.py │ │ ├── cluster.py │ │ └── yliluoma/ │ │ ├── __init__.py │ │ ├── _algorithm_one.py │ │ └── _utils.py │ ├── palette.py │ └── utils.py ├── requirements.txt ├── run.py ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── test_bayer.py └── test_palette.py