├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.md ├── UNLICENSE ├── assets └── memcacheify.jpg ├── memcacheify.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/UNLICENSE -------------------------------------------------------------------------------- /assets/memcacheify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/assets/memcacheify.jpg -------------------------------------------------------------------------------- /memcacheify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/memcacheify.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flake8==2.5.1 2 | nose==1.1.2 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-heroku-memcacheify/HEAD/tests.py --------------------------------------------------------------------------------