Skip to content

Commit

Permalink
update CICD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
frankinspace committed Jul 24, 2024
1 parent 04b4f70 commit 2b7ef68
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
10 changes: 7 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
import sys

from _pytest.compat import importlib_metadata

sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath(os.path.join(os.pardir, 'scripts')))

Expand All @@ -16,9 +18,11 @@

# -- Project information -----------------------------------------------------

project = "service-netcdf-converter"
author = "PO.DAAC"
version = "0.0.1"
distribution_name = 'net2cog'
project = importlib_metadata.distribution(distribution_name).metadata['Name']
author = importlib_metadata.distribution(distribution_name).metadata['Author']
version = importlib_metadata.distribution(distribution_name).version
release = version

# -- General configuration ---------------------------------------------------

Expand Down
9 changes: 7 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ Welcome to the NetCDF Converter Service documentation!
:maxdepth: 2
:caption: Contents:

.. automodule:: podaac.netcdf_converter.netcdf_convert
.. automodule:: net2cog.netcdf_convert
:members:
:special-members:
:private-members:

.. automodule:: podaac.netcdf_converter.netcdf_convert_worker
.. automodule:: net2cog.netcdf_convert_harmony
:members:
:special-members:
:private-members:

.. automodule:: net2cog.validate_cloud_optimized_geotiff
:members:
:special-members:
:private-members:
Expand Down

0 comments on commit 2b7ef68

Please sign in to comment.