gitextract_r9bcdcde/ ├── .coveragerc ├── .editorconfig ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py ├── simple_sso/ │ ├── __init__.py │ ├── exceptions.py │ ├── models.py │ ├── sso_client/ │ │ ├── __init__.py │ │ └── client.py │ ├── sso_server/ │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_consumer_name_max_length.py │ │ │ ├── 0003_token_redirect_to_max_length.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── server.py │ └── utils.py ├── tests/ │ ├── __init__.py │ ├── requirements.txt │ ├── settings.py │ ├── test_core.py │ ├── test_migrations.py │ ├── urls.py │ └── utils/ │ ├── __init__.py │ └── context_managers.py ├── tox.ini └── travis.yml