LaterPay Python client.
If you're using Django then you probably want to look at django-laterpay
$ pip install laterpay-client
See https://docs.laterpay.net/
See https://github.com/laterpay/laterpay-client-python
- Install
twine
with$ pipsi install twine
- Determine next version number from the
CHANGELOG.md
(ensuring we follow SemVer) git flow release start $newver
- Ensure
CHANGELOG.md
is representative - Update the
CHANGELOG.md
with the new version - Update the version in
setup.py
- Update trove 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 releasestwine upload -s ...
- Bump version in
setup.py
to next likely version asAlpha 1
(e.g.5.1.0a1
) - Alter trove classifiers in
setup.py
- Add likely new version to
CHANGELOG.md