openGPMP
Open Source Mathematics Package
__init__.py
Go to the documentation of this file.
1 """!@brief Python API for openGPMP.
2 @details See the following links for details and documentation:
3  SOURCE CODE : https://github.com/akielaries/openGPMP/
4  DOCS : https://akielaries.github.io/openGPMP/
5  PyPI : https://pypi.org/project/pygpmp/
6 """
7 """
8 /*************************************************************************
9  *
10  * Project
11  * _____ _____ __ __ _____
12  * / ____| __ \| \/ | __ \
13  * ___ _ __ ___ _ __ | | __| |__) | \ / | |__) |
14  * / _ \| '_ \ / _ \ '_ \| | |_ | ___/| |\/| | ___/
15  *| (_) | |_) | __/ | | | |__| | | | | | | |
16  * \___/| .__/ \___|_| |_|\_____|_| |_| |_|_|
17  * | |
18  * |_|
19  *
20  * Copyright (C) Akiel Aries, <akiel@akiel.org>, et al.
21  *
22  * This software is licensed as described in the file LICENSE, which
23  * you should have received as part of this distribution. The terms
24  * among other details are referenced in the official documentation
25  * seen here : https://akielaries.github.io/openGPMP/ along with
26  * important files seen in this project.
27  *
28  * You may opt to use, copy, modify, merge, publish, distribute
29  * and/or sell copies of the Software, and permit persons to whom
30  * the Software is furnished to do so, under the terms of the
31  * LICENSE file. As this is an Open Source effort, all implementations
32  * must be of the same methodology.
33  *
34  *
35  *
36  * This software is distributed on an AS IS basis, WITHOUT
37  * WARRANTY OF ANY KIND, either express or implied.
38  *
39  ************************************************************************/
40 """
41 
42 __all__: list[str]
43 __path__: list[str]
44 
45 
46 from . import _version
47 __version__ = _version.get_versions()['version']