Metadata-Version: 2.0
Name: django-ci-emailfield
Version: 0.0.1
Summary: django-ci-emailfield
Provides-Extra: test
Requires-Dist: pytest (>=2.6.0); extra == 'test'
Requires-Dist: pytest-cov (>=1.7.0); extra == 'test'

====================



Really simple Django ORM field for case insensitive email addresses



Uses CITEXT on PostgreSQL and lowercases the values on other databases



See https://groups.google.com/d/msg/django-developers/SW7_qI81G58/Mdw65BhEBAAJ





Usage::



    from django.db import models

    from django_ciemailfield import CiEmailField



    class User(models.Model):

        email = CiEmailField(unique=True)

Home-page: https://github.com/mvantellingen/django-ciemailfield
Author: Michael van Tellingen
Author-email: michaelvantellingen@gmail.com
License: MIT
Description: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
