gitextract_ry2o33bi/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── q-a.md │ └── workflows/ │ ├── python-publish.yml │ ├── test.yml │ └── toc.yml ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── SkinToneClassifier.iml │ ├── inspectionProfiles/ │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── other.xml │ ├── runConfigurations/ │ │ ├── build.xml │ │ ├── install_test.xml │ │ ├── pre_build.xml │ │ ├── pre_test.xml │ │ ├── publish_pypi.xml │ │ ├── publish_test.xml │ │ └── tox_test.xml │ └── vcs.xml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── pyproject.toml ├── requirements.txt ├── src/ │ └── stone/ │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── image.py │ ├── package.py │ ├── ui/ │ │ └── __init__.py │ └── utils.py ├── tests/ │ ├── __init__.py │ └── test_utils.py └── tox.ini