-
Notifications
You must be signed in to change notification settings - Fork 13
/
meta.yaml
61 lines (54 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{% set name = "solvation_analysis" %}
{% set version = "0.3.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/solvation-analysis-{{ version }}.tar.gz
sha256: 18503c20d12d745da33d5da5f06f4a2f0482dbbe55364ad34ca3eec416cb2e71
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- versioneer-518
host:
- python >=3.7
- pip
- pathlib
- pytest
- rdkit
- versioneer-518
run:
- python >=3.7
- numpy >=1.16.0
- mdanalysis >=2.0.0
- pandas
- matplotlib-base
- scipy
- plotly
- statsmodels
- rdkit
test:
imports:
- solvation_analysis
commands:
- pip check
requires:
- pip
about:
home: https://pypi.org/project/solvation-analysis/
summary: 'Rapidly understand solvation with MDAnalysis.'
description: |
Solvation analysis implements a robust, cohesive, and fast set of
methods for analyzing the solvation structure of a liquid. It seamlessly
integrates with MDAnalysis, making use of the core AtomGroup and Universe
data structures to parse solvation information. If you are interested in
understanding the solvation structure of a liquid, this package is for you!
license: GPL-3.0-only
license_file: LICENSE
extra:
recipe-maintainers:
- orionarcher
- hmacdope