diff --git a/deploy.py b/deploy.py new file mode 100644 index 0000000..7adbb6a --- /dev/null +++ b/deploy.py @@ -0,0 +1,11 @@ +import os + +# print message +print("\033[0;32mBuilding project for pypi...\033[0m\n") + +# build package +os.system("python setup.py sdist") +# upload package +os.system("twine upload dist/*") + +print("\033[0;32mDeployment finished...\033[0m\n") \ No newline at end of file