Skip to content

Commit

Permalink
Merge pull request #28554 from hcho38/develop
Browse files Browse the repository at this point in the history
Adding imdclient package of IMDv3
  • Loading branch information
synapticarbors authored Dec 16, 2024
2 parents db65065 + 09c7950 commit 95fe9ea
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions recipes/imdclient/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "imdclient" %}
{% set version = "0.1.3" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/imdclient-{{ version }}.tar.gz
sha256: 5e18d01b0265d2ea553dd47dbeb0a50e6b8dfb2244c22d9714836267906ddf74

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools >=61.2
- versioningit
- pip
run:
- python >={{ python_min }}
- mdanalysis >=2.7.0

test:
imports:
- imdclient
commands:
- pip check
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/Becksteinlab/imdclient
summary: Receiver for IMD v2 and v3 data from simulation engines like Gromacs, LAMMPS, and NAMD
license: MIT
license_file: LICENSE
description: |
IMD (Interactive Molecular Dynamics) is a protocol for communicating molecular simulation data through a socket.
It allows for two-way communication via IMD, a simulation engine sends data to a receiver and the receiver can send forces and certain requests back to the simulation engine.
Version numbers in IMD are monotonically increasing integers.
IMDv3, the protocol version described in this document, builds upon IMDv2, which is implemented at the time of writing in NAMD, VMD, GROMACS, and LAMMPS.
IMDv2 is itself a modification of the original IMD protocol published in 2001.
doc_url: https://imdclient.readthedocs.io/en/latest/protocol_v3.html
dev_url: https://github.com/Becksteinlab/imdclient

extra:
recipe-maintainers:
- hcho38
- ljwoods2
- amruthesht
- orbeckst

0 comments on commit 95fe9ea

Please sign in to comment.