├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README ├── README.md ├── djcelery_transactions ├── __init__.py └── transaction_signals.py ├── setup.py ├── tests.settings └── tests ├── __init__.py ├── settings.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | *.egg-info 4 | *.pyc 5 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | See README.md. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/README.md -------------------------------------------------------------------------------- /djcelery_transactions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/djcelery_transactions/__init__.py -------------------------------------------------------------------------------- /djcelery_transactions/transaction_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/djcelery_transactions/transaction_signals.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/setup.py -------------------------------------------------------------------------------- /tests.settings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradleyayers/django-celery-transactions/HEAD/tests/tests.py --------------------------------------------------------------------------------