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