diff --git a/setup.py b/setup.py index 33b6f073b5e57ce1d512639e3c6e84762da33857..ff12795e2f9fcc80d1e39464af5a879d61b5afb2 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,11 @@ -# Use this guide: -# https://packaging.python.org/tutorials/packaging-projects/ -# -# py -m build && twine upload dist/* -# git add . && git commit -m"updates" && git push && pip install -e ./ +""" +Use this guide: +https://packaging.python.org/tutorials/packaging-projects/ + +py -m build && twine upload dist/* +git add . && git commit -m"updates" && git push +sudo pip install -e ./ +""" import setuptools with open("src/unitgrade/version.py", "r", encoding="utf-8") as fh: __version__ = fh.read().split("=")[1].strip()[1:-1]