Simple README.md for a Python project template.
To install the library run: pip install change-me
- Install Poetry
make init
to create the virtual environment and install dependenciesmake format
to format the code and check for errorsmake test
to run the test suitemake clean
to delete the temporary files and directoriespoetry publish --build
to 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()