Files
Alex38Lyon 77d57d67dc pyCreateTh
2025-07-01 16:17:33 +02:00

29 lines
792 B
Python

######!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2020 Xavier Robert <xavier.robert@ird.fr>
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import division
# This to be sure that the result of the division of integers is a real, not an integer
from __future__ import absolute_import
from __future__ import print_function
# Import modules
import sys
import os
from . _version import __version__
# Import all the functions
__all__ = ['vtopotools', 'datathwritetools', 'buildthconfig', 'buildthconfig', 'tro2th.tro2th']
#from .text import joke
#from datathwritetools import writeheader_th, writecenterlineheader, writedata
from .buildparam import *
from .vtopotools import *
from .datathwritetools import *
from .buildthconfig import *
from .tro2th import *