Skip to content
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
2 changes: 2 additions & 0 deletions paths_cli/file_copying.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
mode='a'
)


class PrecomputeLoadNames(OPSStorageLoadNames):
def get(self, storage, name):
if len(name) == 0:
Expand All @@ -26,6 +27,7 @@ def get(self, storage, name):

return super(PrecomputeLoadNames, self).get(storage, name)


PRECOMPUTE_CVS = PrecomputeLoadNames(
param=Option('--cv', type=str, multiple=True,
help=('name of CV to precompute; if not specified all will'
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = openpathsampling-cli
version = 0.0.4.dev0
version = 0.1.1.dev0
# version should end in .dev0 if this isn't to be released
description = Command line tool for OpenPathSampling
long_description = file: README.md
Expand All @@ -22,7 +22,7 @@ python_requires = >= 3.6
install_requires =
click
tqdm
openpathsampling
openpathsampling >= 1.2
packages = find:

[options.entry_points]
Expand Down