Metadata-Version: 1.1
Name: plumed
Version: 2.5.4
Summary: Python interface to PLUMED
Home-page: http://www.plumed.org
Author: Gareth A. Tribello
Author-email: plumed-users@googlegroups.com
License: UNKNOWN
Description: Python wrappers for plumed
        ==========================
        
        Install using the following command::
        
             python -m pip install plumed
        
        WARNING: You will need to also build and install the plumed library (see http://www.plumed.org) and make sure the file `libplumedKernel.so` (or `libplumedKernel.dylib`) is available on your system.
        
        You should then make sure the library is found setting the environment variable `PLUMED_KERNEL`::
        
             export PLUMED_KERNEL=/path/to/libplumedKernel.so
             python
             >>> import plumed
             >>> p=plumed.Plumed()
        
        If you manage multiple plumed versions on your system using tcl environment modules, this should be taken care automatically
        by the plumed module.
        
        Alternatively, a pure python solution is::
        
            >>> import plumed
            >>> os.environ["PLUMED_KERNEL"]="/path/to/libplumedKernel.so"
            >>> p=plumed.Plumed()
        
        Finally, notice that you can set the path to the plumed library directly when declaring a Plumed object::
        
            >>> import plumed
            >>> p=plumed.Plumed(kernel="/path/to/libplumedKernel.so")
        
        This will allow you to mix different plumed versions in the same python script.
        
        CHANGES: See the PLUMED documentation.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
