Skip to content

Commit

Permalink
Fix docs build error; update author and CR date (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Dec 1, 2023
1 parent a6a93ce commit 5fe5a01
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import sys

from dunamai import Version
from setuptools import config
from importlib.metadata import metadata


def repository_root(path: PathLike = None) -> Path:
Expand All @@ -42,11 +42,11 @@ def repository_root(path: PathLike = None) -> Path:
)

# -- Project information -----------------------------------------------------
metadata = config.read_configuration('../../setup.cfg')['metadata']
md = metadata('ensembleperturbation')

project = metadata['name']
author = metadata['author']
copyright = f'2021, {author}'
project = md['Name']
author = md['Author']
copyright = f'2023, {author}'

# The full version, including alpha/beta/rc tags
try:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'ensembleperturbation'
version = '0.0.0'
description = 'perturbation of coupled model input over a space of input variables'
authors = ['Zach Burnett <zachary.burnett@noaa.gov>']
authors = ['Zach Burnett', 'Soroosh Mani <Soroosh.Mani@noaa.gov>']
license = 'CC0-1.0'
readme = 'README.md'
repository = 'https://github.com/noaa-ocs-modeling/EnsemblePerturbation.git'
Expand All @@ -28,6 +28,7 @@ chaospy = '*'
cmocean = { version = '*', optional = true }
coupledmodeldriver = '>=1.5'
dask = '*'
dunamai = { version = '*', optional = true }
f90nml = '*'
fiona = '*'
geopandas = '*'
Expand Down

0 comments on commit 5fe5a01

Please sign in to comment.