Metadata-Version: 1.1
Name: lfs-compropago
Version: 0.1
Summary: ComproPago payment processor for Django-LFS
Home-page: http://github.io/tzicatl/lfs-compropago
Author: Noe Nieto
Author-email: nnieto@noenieto.com
License: MIT
Description: What is it?
        ===========
        
        lfs_compropago is the integration of `Compropago <https://compropago.com/>`_ into `LFS <http://getlfs.com/>`_, an online shop based on Django.
        
        Installation
        ============
        
        Modify ``buildout.cfg``. Add ``lfs-compropago`` to ``develop`` and ``eggs``::
        
            [buildout]
            ....
            develop =
                src/lfs-compropago
            eggs =
                django-lfs
                ...
                lfs-compropago
        
        Modify your ``settings.py``
        ---------------------------
        
        First add ``CompropagoProcessor`` to the list of available payment processors.
        It should look like this:
        
            LFS_PAYMENT_METHOD_PROCESSORS = [
                ...
                ["lfs_compropago.CompropagoProcessor", _(u"Compropago")],
            ]
        
        Also add it to ``INSTALLED_APPS``.::
        
            INSTALLED_APPS = (
                ...
                'lfs_compropago',
            )
        
        Now add settings for your compropago account:
        
            COMPROPAGO_API_KEY = "UwG9SYdHvh7bZ6eFA3242xxyyzz"
        
        Finally, add url routingsin your ``urls.py``:
        
            urlpatterns += patterns("",
                ...
                (r'^compropago/', include('lfs_compropago.urls')),
            )
        
        Restart Django.
        
        After restart, go to "Manage -> Payment methods", add a new one, and select
        "Compropago" on "Module" field.
        
        
        1.0
        ===
        Initial release
        
        
        
Keywords: ecommerce e-commerce payment development mexico lfs django-lfs
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Spanish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
