Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
rashatwi committed Apr 19, 2024
1 parent b46934e commit 37a137b
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 35 deletions.
4 changes: 1 addition & 3 deletions mispr/lammps/database.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# coding: utf-8

# Defines classes for handling mongodb interactions.
"""Define classes for handling mongodb interactions."""

import sys
import logging
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/firetasks/parse_outputs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines firetasks for reading output of Ambertools programs and LAMMPS.
"""Define firetasks for reading output of Ambertools programs and LAMMPS."""

import os
import json
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/firetasks/run.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines firetasks for running LAMMPS simulations and AmberTools.
"""Define firetasks for running LAMMPS simulations and AmberTools."""

import os
import re
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/firetasks/write_inputs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines firetasks for writing LAMMPS input files.
"""Define firetasks for writing LAMMPS input files."""

import os
import json
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/fireworks/core.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines core fireworks for ambertools and lammps.
"""Define core fireworks for ambertools and lammps."""

import os
import logging
Expand Down
7 changes: 2 additions & 5 deletions mispr/lammps/utilities/opls.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# coding: utf-8


# Implements a core class MaestroRunner for assigning force field
# parameters on a molecule using Maestro software.
"""Implements a core class MaestroRunner for assigning force field parameters on a
molecule using Maestro software."""

import os
import re
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/utilities/utilities.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines lammps utility functions.
"""Define lammps utility functions."""

import os
import json
Expand Down
5 changes: 1 addition & 4 deletions mispr/lammps/workflows/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# coding: utf-8


# Defines standard lammps workflows.
"""Define standard lammps workflows."""

import os

Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,20 @@
url="https://github.com/molmd/mispr",
install_requires=[
"numpy >= 1.21.1",
# "pymongo >= 3.11.0",
# "pymongo <= 3.12.0",
"pymongo>=3.3.0,<=3.12.0",
"matplotlib >= 3.3.1",
"networkx >= 2.5",
"fireworks >= 1.9.6",
"monty >= 4.0.0",
"FireWorks >= 2.0.3",
# "monty >= 4.0.0",
"scipy >= 1.5.2",
"pandas >= 1.1.2",
"pubchempy",
"parmed",
"mdproptools",
"dnspython"
"dnspython",
"ruamel.yaml>=0.15.35,<=0.17.40", # should be removed in the future, but is needed since FireWorks has not updated their function calls to match newer versions of ruamel.yaml
],
packages=setuptools.find_packages(),
classifiers=[
Expand Down

0 comments on commit 37a137b

Please sign in to comment.