├── .bumpversion.cfg ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django-taggit-helpers.lightning-talk.2015-09-23.pdf ├── setup.cfg ├── setup.py └── taggit_helpers ├── __init__.py ├── admin.py └── apps.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/README.rst -------------------------------------------------------------------------------- /django-taggit-helpers.lightning-talk.2015-09-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/django-taggit-helpers.lightning-talk.2015-09-23.pdf -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/setup.py -------------------------------------------------------------------------------- /taggit_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/taggit_helpers/__init__.py -------------------------------------------------------------------------------- /taggit_helpers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/taggit_helpers/admin.py -------------------------------------------------------------------------------- /taggit_helpers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfcovington/django-taggit-helpers/HEAD/taggit_helpers/apps.py --------------------------------------------------------------------------------