Skip to content

This is a quick template to get you started with a Python repository with all of the annoying but important things done for you already.

License

Notifications You must be signed in to change notification settings

TUM-Aries-Lab/template-python

Repository files navigation

template-python

Simple README.md for a Python project template.

Install

To install the library run: pip install change-me

Development

  1. Install Poetry
  2. make init to create the virtual environment and install dependencies
  3. make format to format the code and check for errors
  4. make test to run the test suite
  5. make clean to delete the temporary files and directories
  6. poetry publish --build to build and publish to https://pypi.org/project/change-me

Module Usage

"""Basic docstring for my module."""

from loguru import logger

def main() -> None:
    """Run a simple demonstration."""
    logger.info("Hello World!")

if __name__ == "__main__":
    main()

Program Usage

poetry run python -m change_me

About

This is a quick template to get you started with a Python repository with all of the annoying but important things done for you already.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages