├── .coveragerc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── django_mailgun.py ├── setup.cfg ├── setup.py └── test_django_mailgun.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = test_django_mailgun* 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/README.rst -------------------------------------------------------------------------------- /django_mailgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/django_mailgun.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/setup.py -------------------------------------------------------------------------------- /test_django_mailgun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BradWhittington/django-mailgun/HEAD/test_django_mailgun.py --------------------------------------------------------------------------------