Module fntom.Constants

Definitions of global constants. At the moment, only the constants containing the version of the package are present.

Expand source code
# -*- coding: UTF-8 -*-

# This file is a part of fntom which is a Python3 package that implements a
# finite, negative, totally ordered monoid together with methods to compute its
# one-element Rees co-extensions.
#
# Copyright (C) 2021 Milan PetrĂ­k <milan.petrik@protonmail.com>
#
# Web page of the program: <https://gitlab.com/petrikm/fntom>
#
# fntom is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# fntom is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# fntom. If not, see <https://www.gnu.org/licenses/>.

"""
    Definitions of global constants.
    At the moment, only the constants containing the version of the package are
    present.
"""

__all__ = ["VERSION", "__version__"]

# version of the package
VERSION = (0, 1, 0) 
#__version__ = ".".join([str(x) for x in VERSION])
__version__ = str(VERSION[0]) + "." + str(VERSION[1]) + "." + str(VERSION[2])