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
2 changes: 1 addition & 1 deletion bgflow/distribution/energy/multi_double_well_potential.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


class MultiDoubleWellPotential(Energy):
"""Energy for a many particle system with pair wise double-well interactions.
r"""Energy for a many particle system with pair wise double-well interactions.
The energy of the double-well is given via

.. math::
Expand Down
21 changes: 21 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Mandatory dependencies
torch
einops
numpy

# Optional dependencies
# matplotlib # for plotting
# pytest # for testing
# nflows # for Neural Spline Flows
# torchdiffeq # for neural ODEs
# ANODE # for neural ODEs
# openmm # for molecular mechanics energies
# ase # for atomic simulation environment
# xtb-python # for GFN quantum energies
# netCDF4 # for ReplayBufferReporter
# jax # for implicit flows
# jax2torch # for jax-to-torch bridges
# allegro # for GNNs
# nequip # for GNNs
# bgmol # for examples

5 changes: 3 additions & 2 deletions versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,10 @@ def get_config_from_root(root):
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
# the top of versioneer.py for instructions on writing your setup.cfg .
setup_cfg = os.path.join(root, "setup.cfg")
parser = configparser.SafeConfigParser()
parser = configparser.RawConfigParser()
with open(setup_cfg, "r") as f:
parser.readfp(f)
# parser.readfp(f)
parser.read_file(f)
VCS = parser.get("versioneer", "VCS") # mandatory

def get(parser, name):
Expand Down