[SYSTEMDS-2667] Automate upload distribution archives to pypi

This patch adds a script to generate and upload distribution archives
to pypi repo. A successful test run is done to upload to testpypi repo.
diff --git a/dev/release/pypi_upload.sh b/dev/release/pypi_upload.sh
new file mode 100644
index 0000000..7106011
--- /dev/null
+++ b/dev/release/pypi_upload.sh
@@ -0,0 +1,45 @@
+#!/usr/bin/env bash
+#-------------------------------------------------------------
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+#-------------------------------------------------------------
+
+#BASE_DIR=$(pwd)
+#BASE_DIR="/c/virtual\ D/SystemDS/systemds"
+BASE_DIR="../.." #points to systemds directory
+RELEASE_WORK_DIR=$BASE_DIR/target/release2
+RELEASE_VERSION=2.0.0
+eval cd $RELEASE_WORK_DIR/systemds/src/main/python
+
+# Steps:
+# 1. update systemds/project_info.py with the new version
+sed -i "s/$RELEASE_VERSION-SNAPSHOT/$RELEASE_VERSION/" systemds/project_info.py
+
+# 2. generate distribution archives
+python3 create_python_dist.py
+
+# 3. upload the distribution archives to testpypi/pypi
+#    - For testing follow https://packaging.python.org/tutorials/packaging-projects/
+#    - Note: for testing use command prompt in windows and use Edit->paste to paste 
+#      the API token (known issues)
+
+#python -m twine upload --repository testpypi dist/* #Test
+#python twine upload dist/*  #Real
+
+exit
diff --git a/src/main/python/systemds/project_info.py b/src/main/python/systemds/project_info.py
index 9bbd1ff..8a6f953 100644
--- a/src/main/python/systemds/project_info.py
+++ b/src/main/python/systemds/project_info.py
@@ -23,4 +23,4 @@
 # via string substitutions using the maven-resources-plugin
 __project_group_id__ = 'org.apache.systemds'
 __project_artifact_id__ = 'systemds'
-__project_version__ = '0.2.0-SNAPSHOT'
+__project_version__ = '2.0.0-SNAPSHOT'