diff --git a/README.md b/README.md index e489d0f..75a9f9d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # EcoFOCIpy python tools for the EcoFOCI PMEL research Program -Examples and Notebook Archives can be found within this package or also at [ecofoci_code_lab](https://noaa-pmel.github.io/ecofoci_code_lab/content/code_gallery/ecofocipy.html) +Examples and Notebook Archives can be found within this package or also at [ecofoci_code_lab](https://noaa-pmel.github.io/ecofoci_code_lab/content/code_gallery/EcoFOCIpy.html) ## Basic Description diff --git a/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example.ipynb b/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example.ipynb index 347f74a..fb4da1b 100644 --- a/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example.ipynb +++ b/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example.ipynb @@ -89,7 +89,7 @@ "outputs": [], "source": [ "sample_data_dir = '/Users/bell/ecoraid/2019/CTDcasts/hly1901/' #root path to cruise directory\n", - "ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'" + "EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'" ] }, { @@ -133,7 +133,7 @@ "cruise_name = 'HE1901' #no hyphens\n", "cruise_meta_file = sample_data_dir+'logs/HE1901.yaml'\n", "inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTD.yaml' #<- copy to each deployment for simplicity?\n", - "group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n", + "group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n", "###############################################################\n", "\n", "#init and load data\n", diff --git a/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example_simple.ipynb b/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example_simple.ipynb index 7ee458e..cff5517 100644 --- a/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example_simple.ipynb +++ b/notebooks/EcoFOCIpy_sbe_ctd_btlfile_example_simple.ipynb @@ -37,7 +37,7 @@ "outputs": [], "source": [ "sample_data_dir = '/Users/bell/ecoraid/2021/CTDcasts/dy2103/' #root path to cruise directory\n", - "ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'" + "EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'" ] }, { @@ -53,7 +53,7 @@ "cruise_name = 'DY2103' #no hyphens\n", "cruise_meta_file = sample_data_dir+'logs/DY2103.yaml'\n", "inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTDplusrinko.yaml' #<- copy to each deployment for simplicity?\n", - "group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n", + "group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n", "###############################################################\n", "\n", "#init and load data\n", diff --git a/notebooks/EcoFOCIpy_sbe_ctd_example.ipynb b/notebooks/EcoFOCIpy_sbe_ctd_example.ipynb index 4d8106a..5e55688 100644 --- a/notebooks/EcoFOCIpy_sbe_ctd_example.ipynb +++ b/notebooks/EcoFOCIpy_sbe_ctd_example.ipynb @@ -69,7 +69,7 @@ "outputs": [], "source": [ "sample_data_dir = '/Users/bell/ecoraid/2021/CTDcasts/dy2103/' #root path to cruise directory\n", - "ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'" + "EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'" ] }, { @@ -159,7 +159,7 @@ "cruise_name = 'DY2103' #no hyphens\n", "cruise_meta_file = sample_data_dir+'logs/DY2103.yaml'\n", "inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTDplusrinko.yaml'\n", - "group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n", + "group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n", "inst_shortname = '' #keep as placeholder for now\n", "###############################################################\n", "\n", diff --git a/setup.cfg b/setup.cfg index 116dad2..3a9e5b1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -61,5 +61,5 @@ max-line-length = 95 [flake8] max-line-length = 95 -application-import-names = ecofocipy +application-import-names = EcoFOCIpy import-order-style = google diff --git a/setup.py b/setup.py index 873eb55..2efbe65 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 ecofocipy +# Copyright (c) 2021 EcoFOCIpy """Setup script for installing EcoFOCIpy.""" import sys @@ -7,7 +7,7 @@ if sys.version_info[0] < 3: error = """ - ecofocipy requires the Python 3.8 or above, but will install on + EcoFOCIpy requires the Python 3.8 or above, but will install on all versions of python3. Python {py} detected. diff --git a/src/_version.py b/src/_version.py index f933cd9..10edcff 100644 --- a/src/_version.py +++ b/src/_version.py @@ -3,7 +3,7 @@ def get_version(): - """Get ecofocipy's version. + """Get EcoFOCIpy's version. Either get it from package metadata, or get it using version control information if a development install.