Metadata-Version: 2.0
Name: laterpay-client
Version: 5.2.0
Summary: LaterPay API client
Home-page: https://github.com/laterpay/laterpay-client-python
Author: LaterPay GmbH
Author-email: support@laterpay.net
License: MIT
Keywords: LaterPay API client
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests
Requires-Dist: six

laterpay-client-python
======================

.. image:: https://img.shields.io/pypi/v/laterpay-client.png
    :target: https://pypi.python.org/pypi/laterpay-client

.. image:: https://img.shields.io/travis/laterpay/laterpay-client-python/develop.png
    :target: https://travis-ci.org/laterpay/laterpay-client-python

.. image:: https://img.shields.io/coveralls/laterpay/laterpay-client-python/develop.png
    :target: https://coveralls.io/r/laterpay/laterpay-client-python


`LaterPay <http://www.laterpay.net/>`__ Python client.

If you're using `Django <https://www.djangoproject.com/>`__ then you probably want to look at `django-laterpay <https://github.com/laterpay/django-laterpay>`__

Installation
------------

::

    $ pip install laterpay-client

Usage
-----

See http://docs.laterpay.net/

Development
-----------

See https://github.com/laterpay/laterpay-client-python

`Tested by Travis <https://travis-ci.org/laterpay/laterpay-client-python>`__

Release Checklist
-----------------

* Install ``twine`` with ``$ pipsi install twine``
* Ensure ``CHANGELOG.md`` is representative
* Determine next version number from the CHANGELOG (ensuring we follow `SemVer <http://semver.org/>`_)
* ``git flow release start $newver``
* Update the CHANGELOG with the new version
* Update the version in ``setup.py``
* Update `trove classifiers <https://pypi.python.org/pypi?%3Aaction=list_classifiers>`_ in ``setup.py``
* ``git flow release finish $newver``
* ``git push --tags origin develop master``
* ``python setup.py sdist bdist_wheel``
* ``twine upload dist/laterpay*$newver*`` or optionally, for signed releases ``twine upload -s ...``
* Bump version in ``setup.py`` to next likely version as ``Alpha 1`` (e.g. ``5.1.0a1``)
* Alter trove classifiers in ``setup.py``
* Add likely new version to ``CHANGELOG.md``


