Metadata-Version: 1.1
Name: django-gerencianet
Version: 0.1.4
Summary: Uma aplicação django para comunicar com o gateway de pagamento Gerencianet
Home-page: https://github.com/sidneycarlos65/django-gerencianet
Author: Sidney Machado
Author-email: sidney.machado@starlinetecnologia.com.br
License: BSD License
Description: =====
        Gerencianet
        =====
        
        Gerencianet is a simple Django app to make the integration with the GerenciaNet payment Gateway.
        
        Quick start
        -----------
        
        1. Add "gerencianet" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'gerencianet',
            )
        
        2. Include the base gerencianet URLconf in your project urls.py like this::
        
            url(r'^gerencianet/', include('gerencianet.urls')),
        
        3. Run `python manage.py migrate` to create the gerencianet models.
        OBS. If you get some errors like "gerencianet_paymentlog already exists", try to fake the initial migration for the model. Ex: python manage.py migrate gerencianet --fake-initial
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
