Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs build error; update author and CR date #119

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading