Skip to content

Commit

Permalink
moved soundspeed under lib
Browse files Browse the repository at this point in the history
  • Loading branch information
giumas committed Jan 21, 2024
1 parent 3a24961 commit 90856f6
Show file tree
Hide file tree
Showing 125 changed files with 10 additions and 11 deletions.
10 changes: 5 additions & 5 deletions hyo2/soundspeed/__init__.py → hyo2/ssm2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Hydro-Package
Sound Speed
Sound Speed Manager 2
"""

import os
Expand All @@ -11,15 +11,15 @@
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())

name = "Sound Speed"
name = "Sound Speed Manager"
__version__ = '2024.0.0'
__copyright__ = 'Copyright 2024 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); " \
lib_info.lib_author = "Giuseppe Masetti(UNH,JHC-CCOM); Barry Gallagher(NOAA,OCS); " \
"Chen Zhang(NOAA,OCS)"
lib_info.lib_author_email = "[email protected]; [email protected]; " \
"[email protected]"
Expand All @@ -30,13 +30,13 @@
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_manual_url = "https://www.hydroffice.org/manuals/ssm2/index.html"
lib_info.lib_support_email = "[email protected]"
lib_info.lib_latest_url = "https://www.hydroffice.org/latest/soundspeed.txt"

lib_info.lib_dep_dict = {
"hyo2.abc2": "hyo2.abc2",
"hyo2.soundspeed": "hyo2.soundspeed",
"hyo2.ssm2": "hyo2.ssm2",
"hyo2.surveydatamonitor": "hyo2.surveydatamonitor",
"gsw": "gsw",
"netCDF4": "netCDF4",
Expand Down
File renamed without changes.
Empty file added hyo2/ssm2/app/gui/__init__.py
Empty file.
Empty file added hyo2/ssm2/lib/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def find_version(*file_paths):
# POPULATE SETUP

setup(
name="hyo2.soundspeed",
version=find_version("hyo2", "soundspeed", "__init__.py"),
name="hyo2.ssm2",
version=find_version("hyo2", "ssm2", "__init__.py"),
license='LGPLv2.1 or CCOM-UNH Industrial Associate license',

namespace_packages=[
Expand Down Expand Up @@ -92,15 +92,14 @@ def find_version(*file_paths):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Office/Business :: Office Suites',
],
keywords="hydrography ocean mapping survey sound speed profiles",
author="Giuseppe Masetti(UNH,CCOM); Barry Gallagher(NOAA,OCS); " \
author="Giuseppe Masetti(UNH,JHC-CCOM); Barry Gallagher(NOAA,OCS); " \
"Chen Zhang(NOAA,OCS)",
author_email="[email protected], [email protected], " \
"[email protected]",
Expand Down

0 comments on commit 90856f6

Please sign in to comment.