From 205b85c989316a3d406422af3aa5778059aa2b7f Mon Sep 17 00:00:00 2001 From: Arshad Kazmi Date: Tue, 29 Mar 2022 23:17:25 +0530 Subject: [PATCH] Add release documentation --- RELEASE.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..b6feaa2 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,21 @@ +## Release + +- Build the project using below command + +``` +python3 setup.py sdist bdist_wheel +``` + +- Publish to test pypi repository to test all the changes + +``` +python3 -m twine upload --repository testpypi dist/* +``` + +- Publish to pypi repository + +``` +python3 -m twine upload dist/* +``` + +**--skip-existing**: Use this flag to override an existing version