Metadata-Version: 1.1
Name: django-cpffield
Version: 0.1.1
Summary: CPF Field to use in Django Model Form
Home-page: https://github.com/silviolleite/cfp-field
Author: Silvio Luis Leite
Author-email: silviolleite@gmail.com
License: MIT
Description: CPF Field to use in Django Model Form
        =====================================
        
        *cfp-field* This is a test implementatipon of the CPF Validation as part of
        the "MÃ£o na Massa" proposal of the 4th module of Welcome to the Django
        training (http://welcometothedjango.com.br/).
        
        
        Como instalar?
        --------------
        
        .. code-block:: console
        
            pip install django-cpffield
        
        
        Add "cpffield" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'cpffield',
            ]
        
        Como utilizar dentro de um model.py no django?
        --------------------------------------------------
        .. code-block:: python
        
            from django.db import models
            from cpffield import cpffield
        
        
            class MyModel(models.Model):
                cpf = cpffield.CPFField('CPF', max_length=14)
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
