2
0
Fork 0
textout/textoutpc/version.py

14 lines
474 B
Python
Executable File

#!/usr/bin/env python3
#******************************************************************************
# Copyright (C) 2020 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
# 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.