#!/usr/bin/env python3 #****************************************************************************** # Copyright (C) 2020 Thomas "Cakeisalie5" Touhey # This file is part of the textoutpc project, which is MIT-licensed. #****************************************************************************** """ Only define the version of the module. Can be included directly, without dependencies. """ __all__ = ["version"] version = "0.2.1" # End of file.