Exemplo n.º 1
0
Hydro-Package
SIS4
"""

import os
from hyo2.abc.lib.lib_info import LibInfo
from hyo2.kng.emu.sis4 import name, __version__
import logging

log = logging.getLogger(__name__)
log.addHandler(logging.NullHandler())

lib_info = LibInfo()

lib_info.lib_name = name
lib_info.lib_version = __version__
lib_info.lib_author = "Giuseppe Masetti(UNH,CCOM)"
lib_info.lib_author_email = "*****@*****.**"

lib_info.lib_license = "LGPLv3"
lib_info.lib_license_url = "https://www.hydroffice.org/license/"

lib_info.lib_path = os.path.abspath(os.path.dirname(__file__))

lib_info.lib_url = "https://www.hydroffice.org/kng/"
lib_info.lib_manual_url = "https://www.hydroffice.org/manuals/kng/index.html"
lib_info.lib_support_email = "*****@*****.**"
lib_info.lib_latest_url = "https://www.hydroffice.org/latest/sis4.txt"

lib_info.lib_dep_dict = {"hyo2.abc": "hyo2.abc", "PySide2": "PySide2"}
Exemplo n.º 2
0
logger.addHandler(logging.NullHandler())

name = "Sound Speed"
__version__ = '2021.2.4'
__copyright__ = 'Copyright 2021 University of New Hampshire, Center for Coastal and Ocean Mapping'

lib_info = LibInfo()

lib_info.lib_name = name
lib_info.lib_version = __version__
lib_info.lib_author = "Giuseppe Masetti(UNH,CCOM); Barry Gallagher(NOAA,OCS); " \
                      "Chen Zhang(NOAA,OCS)"
lib_info.lib_author_email = "[email protected]; [email protected]; " \
                            "*****@*****.**"

lib_info.lib_license = "LGPLv2.1 or CCOM-UNH Industrial Associate license"
lib_info.lib_license_url = "https://www.hydroffice.org/license/"

lib_info.lib_path = os.path.abspath(os.path.dirname(__file__))

lib_info.lib_url = "https://www.hydroffice.org/soundspeed/"
lib_info.lib_manual_url = "https://www.hydroffice.org/manuals/soundspeed/index.html"
lib_info.lib_support_email = "*****@*****.**"
lib_info.lib_latest_url = "https://www.hydroffice.org/latest/soundspeed.txt"

lib_info.lib_dep_dict = {
    "hyo2.abc": "hyo2.abc",
    "hyo2.soundspeed": "hyo2.soundspeed",
    "hyo2.surveydatamonitor": "hyo2.surveydatamonitor",
    "gsw": "gsw",
    "netCDF4": "netCDF4",