-
-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ADD: MDsrv version 0.3.5 #3553
ADD: MDsrv version 0.3.5 #3553
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{% set name = "MDsrv" %} | ||
{% set version = "0.3.5" %} | ||
{% set sha256 = "3dd218ec0d62cf47061699b8ab33715d6875fad824091f2ab37e546467fef0c3" %} | ||
|
||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}.tar.gz | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
script: python setup.py install | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use:
https://github.com/conda-forge/staged-recipes/blob/master/recipes/example/meta.yaml#L26 since it appears that this package uses |
||
|
||
requirements: | ||
build: | ||
- python | ||
- cython | ||
- numpy >=1.11 | ||
- msinttypes # [win and py2k] | ||
- setuptools | ||
- flask | ||
- scipy | ||
- zlib | ||
- mdtraj | ||
- mdanalysis # [not win and py2k] | ||
|
||
run: | ||
- python | ||
- setuptools | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is |
||
- numpy >=1.11 | ||
- flask | ||
- mdtraj | ||
- mdanalysis # [not win and py2k] | ||
|
||
test: | ||
imports: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please test the command line interface: |
||
- mdsrv | ||
|
||
about: | ||
home: https://github.com/arose/mdsrv | ||
license: MIT | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add: |
||
summary: "Simple server to visualize remote trajectories." | ||
description: | | ||
MDsrv is a simple server that enables remote access to coordinate trajectories from molecular dynamics simulations. It can be used together with the NGL Viewer (http://github.com/arose/ngl) to interactively view trajectories of molecular complexes in a web-browser, either within a local network or from anywhere over the internet. | ||
doc_url: https://nglviewer.org/mdsrv | ||
dev_url: https://github.com/arose/mdsrv | ||
|
||
extra: | ||
recipe-maintainers: | ||
- j0kaso | ||
- arose | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, I would like to be added as a co-maintainer, thanks |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at the package's
setup.py
it appears that there is a pythonentry_point
. Please add it here:https://conda.io/docs/building/meta-yaml.html#python-entry-points
https://github.com/arose/mdsrv/blob/master/setup.py#L47-L48