├── .gitignore ├── CHANGELOG.md ├── Makefile ├── README.md ├── django └── singlefile │ ├── __init__.py │ └── environment.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | dist/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/README.md -------------------------------------------------------------------------------- /django/singlefile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/django/singlefile/__init__.py -------------------------------------------------------------------------------- /django/singlefile/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/django/singlefile/environment.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/django-singlefile/HEAD/pyproject.toml --------------------------------------------------------------------------------