Metadata-Version: 1.1
Name: pyramid_braintree
Version: 0.1
Summary: Braintree initializer for the Pyramid Web Framework
Home-page: https://github.com/dfee/pyramid_braintree
Author: Devin Fee
Author-email: devin.fee@gmail.com
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: pyramid_braintree
        =================
        
        Braintree initializer for the Pyramid Web Framework. 100% Test Covered.
        
        - The following configuration options are required in your config.ini::
        
            braintree.environment = sandbox
            braintree.merchant_id = MY_MERCHANT_ID
            braintree.public_key = MY_PUBLIC_KEY
            braintree.private_key = MY_PRIVATE_KEY
        
        - The following configuration options are supported for ``environment``:
          
          - ``development``
          - ``production``
          - ``sandbox``
        
        - Additionally, the ``use_unsafe_ssl`` option may be specified (otherwise, this
          configuration wisely defaults to ``False``)::
        
            braintree.use_unsafe_ssl = True
        
        
        0.1 (2013-06-27)
        ------------
        
        - Allow for the following Braintree configuration options: ``environment``, 
          ``merchant_id``, ``public_key``, and ``private_key``
        
Keywords: braintree pyramid payments
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Framework :: Pyramid
