gitextract__jwuffy4/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── changelog.txt ├── docs/ │ ├── Makefile │ ├── _build/ │ │ ├── doctrees/ │ │ │ ├── environment.pickle │ │ │ └── index.doctree │ │ └── html/ │ │ ├── .buildinfo │ │ ├── _sources/ │ │ │ └── index.txt │ │ ├── _static/ │ │ │ ├── basic.css │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── jquery.js │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sidebar.js │ │ │ ├── underscore.js │ │ │ └── websupport.js │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js │ ├── conf.py │ └── index.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── stronghold/ │ ├── __init__.py │ ├── conf.py │ ├── decorators.py │ ├── middleware.py │ ├── models.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── testdecorators.py │ │ ├── testmiddleware.py │ │ ├── testmixins.py │ │ └── testutils.py │ ├── utils.py │ └── views.py └── test_project/ ├── manage.py └── test_project/ ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py