-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
meta.yaml
48 lines (41 loc) · 1.13 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% set name = "contact_map" %}
{% set version = "0.3.0" %}
{% set sha256 = "0abf54254ff68285a57f718c654a09f54664de0f640b49213ecb479ecf5a56cf" %}
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:
noarch: python
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
- future
- numpy
- mdtraj
- pandas
test:
imports:
- contact_map
about:
home: http://github.com/dwhswenson/contact_map
license: LGPL-2.1+
license_family: LGPL
license_file: LICENSE
summary: 'Contact maps based on MDTraj'
description: |
Contact maps based on MDTraj; useful for studying for intramolecular
and intermolecular contacts from simulations of biomolecular systems.
For a more detailed description, see package's documentation.
dev_url: https://github.com/dwhswenson/contact_map
extra:
recipe-maintainers:
- dwhswenson