Metadata-Version: 1.1
Name: webpay
Version: 1.0.0
Summary: WebPay Python bindings
Home-page: https://github.com/webpay/webpay-python
Author: webpay
Author-email: administrators@webpay.jp
License: UNKNOWN
Description: webpay-python is a client library for python of `WebPay <https://webpay.jp>`_.
        
        Requirements
        ============
        
        CPython 2.6, 2.7, 3.2, 3.3
        
        Installation
        ============
        
        ::
        
            $ pip install webpay
        
        Usage
        =====
        
        .. code:: python
        
            from webpay import WebPay
            webpay = WebPay('YOUR_TEST_SECRET_KEY')
        
            webpay.charges.create(
              amount=400,
              currency="jpy",
              card={
                'number': '4242-4242-4242-4242',
                'exp_month': '11',
                'exp_year': '2014',
                'cvc': '123',
                'name': 'FOO BAR'
              }
              )
        
        See `Python API document <https://webpay.jp/docs/api/python>`_ on WebPay
        official page for more details.
        
        Dependencies
        ============
        
        -   `kennethreitz/requests <https://github.com/kennethreitz/requests>`_
        
        Development
        ===========
        
        Testing
        -------
        
        ::
        
            $ pip install -r dev-requirements.txt
            $ py.test
        
        License
        =======
        
        `The MIT License (MIT) <http://opensource.org/licenses/mit-license.html>`_
        
        Copyright (c) 2013 WebPay.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: requests (== 2.0.1)
