Skip to content
Open
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,7 @@ dmypy.json

# Pyre type checker
.pyre/

# pixi environments
.pixi
*.egg-info
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
make_param_main(f)

# -- Project information -----------------------------------------------------
import pkg_resources
import importlib.metadata
import packaging.version

project = 'OpenPathSampling CLI'
copyright = '2019-2022, David W.H. Swenson and contributors'
author = 'David W.H. Swenson'

# The full version, including alpha/beta/rc tags
release = pkg_resources.get_distribution('openpathsampling-cli').version
release = importlib.metadata.version('openpathsampling-cli')
version = packaging.version.Version(release).base_version

master_doc = 'index'
Expand Down
Loading