Skip to content

Commit

Permalink
Merge pull request #132 from SCM-NV/templates
Browse files Browse the repository at this point in the history
solved #131
  • Loading branch information
felipeZ committed Apr 1, 2019
2 parents e39c6a9 + 0a810f1 commit 2375777
Show file tree
Hide file tree
Showing 10 changed files with 239 additions and 331 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def readme():
"qmflows.parsers",
"qmflows.templates"],
package_data={
"qmflows": ['data/templates/*json', 'data/dictionaries/*json']
"qmflows": ['data/dictionaries/*json']
},
classifiers=[
'Intended Audience :: Science/Research',
Expand All @@ -42,7 +42,7 @@ def readme():
'Topic :: Scientific/Engineering :: Chemistry'
],
install_requires=['h5py', 'numpy', 'noodles==0.3.3', 'plams==1.4', 'pymonad',
'pyparsing', 'filelock'],
'pyparsing', 'pyyaml==5.1', 'filelock'],
extras_require={
'test': ['pytest', 'pytest-cov', 'pytest-mock', 'nbsphinx', 'pygraphviz'],
'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx']
Expand Down
4 changes: 2 additions & 2 deletions src/qmflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .packages import (
adf, cp2k, dftb, dirac, gamess, orca, run)

from .templates import (freq, geometry, singlepoint, ts, get_template)
from .templates import (freq, geometry, singlepoint, ts)
from .settings import Settings
from .examples import (
example_ADF3FDE_Cystine, example_ADF3FDE_Dialanine, example_FDE_fragments,
Expand All @@ -16,5 +16,5 @@
'adf', 'cp2k', 'dftb', 'dirac', 'gamess', 'orca', 'run',
'example_ADF3FDE_Cystine', 'example_ADF3FDE_Dialanine', 'example_FDE_fragments',
'example_H2O2_TS', 'example_freqs', 'example_generic_constraints',
'example_partial_geometry_opt', 'freq', 'geometry', 'singlepoint', 'ts', 'get_template',
'example_partial_geometry_opt', 'freq', 'geometry', 'singlepoint', 'ts',
'find_first_job', 'select_max', 'select_min']
83 changes: 0 additions & 83 deletions src/qmflows/data/templates/crs.json

This file was deleted.

36 changes: 0 additions & 36 deletions src/qmflows/data/templates/freq.json

This file was deleted.

67 changes: 0 additions & 67 deletions src/qmflows/data/templates/geometry.json

This file was deleted.

72 changes: 0 additions & 72 deletions src/qmflows/data/templates/singlepoint.json

This file was deleted.

28 changes: 0 additions & 28 deletions src/qmflows/data/templates/ts.json

This file was deleted.

4 changes: 2 additions & 2 deletions src/qmflows/templates/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .templates import (freq, geometry, singlepoint, ts, get_template)
from .templates import (freq, geometry, singlepoint, ts)

__all__ = ['freq', 'geometry', 'singlepoint', 'ts', 'get_template']
__all__ = ['freq', 'geometry', 'singlepoint', 'ts']

0 comments on commit 2375777

Please sign in to comment.