From f5a91e63fa3b9930ba5c9f396c1106ab356f470d Mon Sep 17 00:00:00 2001 From: Christian Kreuzberger Date: Fri, 9 Aug 2019 08:01:13 +0200 Subject: [PATCH] Instructions for releasing on pypi --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ce55651..42a77a6 100644 --- a/README.md +++ b/README.md @@ -350,3 +350,13 @@ python setup.py install cd tests python manage.py test ``` + +## Release on PyPi + +To release this package on pypi, the following steps are used: + +```bash +rm -rf dist/ build/ +python setup.py sdist +twine upload dist/* +```