Directory structure:
└── roverdotcom-django-inlinecss/
├── README.md
├── LICENSE.md
├── MANIFEST.in
├── setup.cfg
├── setup.py
├── test_settings.py
├── .pre-commit-config.yaml
├── django_inlinecss/
│ ├── __init__.py
│ ├── __version__.py
│ ├── conf.py
│ ├── css_loaders.py
│ ├── engines.py
│ ├── models.py
│ ├── templatetags/
│ │ ├── __init__.py
│ │ └── inlinecss.py
│ └── tests/
│ ├── __init__.py
│ ├── test_css_loaders.py
│ ├── test_templatetags.py
│ ├── static/
│ │ ├── bar.css
│ │ ├── foo.css
│ │ └── foobar.css
│ └── templates/
│ ├── base.html
│ ├── comments_are_ignored.html
│ ├── context_vars_render_first.html
│ ├── inline_css.html
│ ├── multiple_staticfiles_css.html
│ ├── single_staticfiles_css.html
│ ├── template_inheritance.html
│ ├── template_inheritance_base.html
│ ├── unicode_context_variables.html
│ ├── variable_and_string_defined_staticfiles_css.html
│ └── variable_defined_staticfiles_css.html
└── .github/
└── workflows/
└── lint-and-test.yml