├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── inmemorystorage ├── __init__.py ├── storage.py └── test_settings.py ├── scripts └── build-and-publish.sh ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE tests.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/README.md -------------------------------------------------------------------------------- /inmemorystorage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/inmemorystorage/__init__.py -------------------------------------------------------------------------------- /inmemorystorage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/inmemorystorage/storage.py -------------------------------------------------------------------------------- /inmemorystorage/test_settings.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | SECRET_KEY = '123' 4 | -------------------------------------------------------------------------------- /scripts/build-and-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/scripts/build-and-publish.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waveaccounting/dj-inmemorystorage/HEAD/tests.py --------------------------------------------------------------------------------