Simple README.md for a Python project template.
To install the library run: pip install change-me
- Install Poetry
- make initto create the virtual environment and install dependencies
- make formatto format the code and check for errors
- make testto run the test suite
- make cleanto delete the temporary files and directories
- poetry publish --buildto build and publish to https://pypi.org/project/change-me
"""Basic docstring for my module."""
from loguru import logger
def main() -> None:
    """Run a simple demonstration."""
    logger.info("Hello World!")
if __name__ == "__main__":
    main()
poetry run python -m change_me