how to deploy to github
----------------------
change src/log level to ERROR
increase the version of pyproject.toml
if exist dist rmdir /s /q dist && python -m build   # to delete any existing build and build
pip install -e ".[all]"  # run pip install
pytest -v                  # run pytest
python sync_git.py "msg"        # run git add, git commit and git push origin main
git tag v0.2.#           # run git to tag version
git push origin v0.2.#   # run git to push the tag version

python -m twine upload --verbose dist/bintang-0.2.37*



use git tag
-----------

# 1. Create a tag for the current version
git tag -a v0.1.# -m "Release version 1.0.5 with code coverage"
or
git tag v0.1.# # if do it without msg

# 2. Push the tag to GitHub
git push origin v0.1.#

# 3. (Optional) If you have a 'main' branch to push too
git push origin main


|version| |build| |coverage| |license|

.. |version| image:: https://img.shields.io/pypi/v/bintang.svg
   :target: https://pypi.org/project/bintang/

.. |build| image:: https://github.com/tomexiskandar/bintang/actions/workflows/main.yml/badge.svg
   :target: https://github.com/tomexiskandar/bintang/actions

.. |coverage| image:: https://codecov.io/gh/tomexiskandar/bintang/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/tomexiskandar/bintang

.. |license| image:: https://img.shields.io/pypi/l/bintang.svg
   :target: https://pypi.org/project/bintang/


   