Metadata-Version: 1.1
Name: marketplace-constants
Version: 0.1.3
Summary: Standard constants for the marketplace
Home-page: https://github.com/andymckay/marketplace-constants
Author: Andy McKay
Author-email: andym@mozilla.com
License: BSD
Description: Global constants for the Firefox Marketplace, available in both JS and Python.
        
        Python
        ------
        
        Example::
        
            >>> from mpconstants import payments
            >>> payments.PAYMENT_STATUSES
            {1: 'passed', 2: 'failed'}
        
        Node
        ----
        
        Example::
        
            > var c = require('./mpconstants.js')
            > c('payments')['PAYMENT_STATUSES']
              { '1': 'passed',
                '2': 'failed' }
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
