Distributed simulation package
dimsim is a Python package for distributed simulation.
git clone https://github.com/openforcefield/dimsim.git
cd dimsim
pip install -e .For development, use conda/mamba to create an environment from the provided file:
mamba env create -f devtools/conda-envs/dev.yaml
mamba activate dimsim-dev
pip install -e .Alternatively, install with pip using the dev extras:
pip install -e ".[dev]"import dimsim
print(f"dimsim version: {dimsim.__version__}")Full documentation is available at dimsim.readthedocs.io.
Run tests with pytest:
pytestOr with coverage:
pytest --cov=dimsim --cov-report=htmlContributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- Lily Wang
This package structure follows best practices from the MolSSI Cookiecutter.