Simple README.md for a Python project template.
Do NOT clone this repository. Please use it as a template instead. This readme is just here to serve as a template for you to get started faster.
To install the library run:
pip install <your-package-name>OR
pip install git+https://github.com/TUM-Aries-Lab/<your-package-name>.git@<specific-tag>- Install Poetry
- Install pyenv
pyenv install <desired-python-version> # install the required python versionpyenv global <desired-python-version> # set the required python versiongit clone git@github.com:TUM-Aries-Lab/template-python.gitmake initto create the virtual environment and install dependenciesmake formatto format the code and check for errorsmake testto run the test suitemake cleanto delete the temporary files and directories
It's super easy to publish your own packages on PyPI. To build and publish this package run:
poetry build
poetry publish # make sure your version in pyproject.toml is updatedThe package can then be found at: https://pypi.org/project/change-me
"""Basic docstring for my module."""
from loguru import logger
from change_me import definitions
def main() -> None:
"""Run a simple demonstration."""
logger.info("Hello World!")
if __name__ == "__main__":
main()poetry run python -m change_me