----------------------------------------------------------------------------------------
Added
~~~~~
- The function `deprecate_kwargs` is added to the package. This function
can be used as a decorator to deprecate keyword arguments in a function.
Namely, we want to rename a keyword argument in a function, but we want
to keep the old name for backward compatibility, with a warning message
to the user. This function can be used to achieve this.
- Demo notebook to demonstrate the usage of the `deprecate_kwargs` function.
- Unit tests for the `deprecate_kwargs` function.
- CI workflow hosted on GitHub Actions.
- Script ``push_to_pypi.sh`` to push the package to PyPI.