BUILD INSTRUCTIONS
- If not done so already, install build and twine and update:
    - python3 -m pip install (build / twine)
    - python3 -m pip install --upgrade (build / twine)
- Build the package:
    - python3 -m build

RELEASE INSTRUCTIONS
- For test pypi:
    - python3 -m twine upload --repository testpypi dist/*
- For normal pypi:
    - python3 -m twine upload --repository pypi dist/*

DOWNLOAD INSTRUCTIONS
helpful info: https://packaging.python.org/en/latest/guides/using-testpypi/
- make sure that wheel is installed / updated:
    - python3 -m install wheel
    - python3 -m install --upgrade wheel
- For test pypi: 
    - to just install package from test pypi: 
            - pip install --index-url https://test.pypi.org/simple/ lynxy
        - to install package from test pypi, but get its dependencies from pypi (RECOMMENDED FOR TESTING): 
            - pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ lynxy
- For normal pypi: 
    - pip install lynxy
- To update, add the following tag: --upgrade