File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- """OceanDataStore base package."""
2- __version__ = "0.1.0"
1+ """
2+ OceanDataStore
3+
4+ An open-source Python library to streamline writing, updating and accessing
5+ ocean data stored in cloud object storage.
6+ """
37__author__ = "Ollie Tooth, Joao Morado, Tobias Ferreira"
4- __credits__ = "National Oceanography Centre"
8+ __credits__ = "National Oceanography Centre (NOC), Southampton, UK"
9+
10+ from importlib .metadata import version as _version
11+
12+ from OceanDataStore .data_catalog import OceanDataCatalog
13+
14+ try :
15+ __version__ = _version ("OceanDataStore" )
16+ except Exception :
17+ # Local copy or not installed with setuptools.
18+ # Disable minimum version checks on downstream libraries.
19+ __version__ = "9999"
520
6- from . data_catalog import OceanDataCatalog
21+ __all__ = ( " OceanDataCatalog" )
You can’t perform that action at this time.
0 commit comments