Metadata-Version: 2.1
Name: depayco
Version: 1.0
Summary: Django integration with epayco.co
Home-page: https://github.com/ma1onso/depayco
Author: Alonso
Author-email: alons45@gmail.com
License: GPL
Description: ## Introduction
        Django integration with epayco.co
        
        ## Installation
        - `pip install depayco`.
        
        - Set _depayco_ on INSTALLED_APPS.
        
        - Run `python manage.py migrate`.
        
        ## Configurations (settings.py)
        
        **EPAYCO_PUBLIC_KEY**: String
        
        **EPAYCO_SECRET_KEY**: String
        
        **DEBUG_EPAYCO**: Boolean
        
        **PLANS**
        ```
        PLANS = (
            {
                'id_plan': 'love2d_course',
                'name': 'love2d Course',
                'description': 'The most beautiful love2d course',
                'amount': 29.99,
                'currency': 'USD',
                'interval': 'month',
                'interval_count': 1,
                'trial_days': 14,
            },
            {
                'id_plan': 'defold_course',
                'name': 'defold Course',
                'description': 'The most mad defold course',
                'amount': 29.99,
                'currency': 'USD',
                'interval': 'month',
                'interval_count': 1,
                'trial_days': 14,
            }
        )
        ```
        
        ## How to use
        
        `python manage.py sync_plans` to create plans on epayco.co
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
