• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-2,1671,497

molmod/H03-May-2022-65,94958,700

molmod.egg-info/H03-May-2022-1918

MANIFEST.inH A D16-Jun-2020279 1310

PKG-INFOH A D16-Jun-2020717 1918

README.rstH A D16-Jun-20201.4 KiB5535

setup.cfgH A D16-Jun-202038 53

setup.pyH A D03-May-20224 KiB10871

README.rst

1.. image:: https://travis-ci.org/molmod/molmod.svg?branch=master
2    :target: https://travis-ci.org/molmod/molmod
3.. image:: https://anaconda.org/molmod/molmod/badges/version.svg
4    :target: https://anaconda.org/molmod/molmod
5.. image:: https://codecov.io/gh/molmod/molmod/branch/master/graph/badge.svg
6    :target: https://codecov.io/gh/molmod/molmod
7
8MolMod is a collection of molecular modelling tools for python. It is used by other
9software developed at the CMM, including Yaff, TAMkin and Zeobuilder.
10
11More information about MolMod can be found on the CMM Code website:
12http://molmod.ugent.be/software
13
14MolMod is distributed as open source software under the conditions of the GPL
15license version 3. Read the file COPYING for more details, or visit
16http://www.gnu.org/licenses/
17
18
19Installation
20============
21
22MolMod can be installed with pip (system wide or in a virtual environment):
23
24.. code:: bash
25
26    pip install Cython numpy
27    pip install molmod
28
29Alternatively, you can install MolMod in your home directory:
30
31.. code:: bash
32
33    pip install Cython numpy --user
34    pip install molmod --user
35
36Lastly, you can also install MolMod with conda. (See
37https://www.continuum.io/downloads)
38
39.. code:: bash
40
41    # Using the builds from Travis-CI ...
42    conda install -c molmod molmod
43    # ... or using the packages on conda-force
44    conda install -c conda-forge molmod
45
46
47Testing
48=======
49
50The tests can be executed as follows:
51
52.. code:: bash
53
54    pytest molmod
55