This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathmeta.yaml
70 lines (66 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
package:
name: pyemma-dev
# version number: [base tag]+[commits-upstream]_[git_hash]
# eg. v2.0+0_g8824162
version: {{ GIT_DESCRIBE_TAG[1:] + '+' + GIT_BUILD_STR}}
source:
path: ../..
# borked, but preferable, because it creates a "clean" working copy locally.
#git_url: ../../
build:
preserve_egg_dir: True
script_env:
- CIRCLE_TEST_REPORTS
- OMP_NUM_THREADS
- PYEMMA_NJOBS
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- cython
- mdtraj
# actually we could build with np18, but fastcluster (dep of mdtraj, we link against) is only avail for 1.9
- numpy 1.9.* # [not (win and (py35 or py36))]
- numpy 1.9.* # [win and py35]
- numpy 1.11.* # [win and py36]
- python >=3
- scipy
- setuptools
- gcc # [ not win ]
run:
- bhmm >=0.6,<0.7
- decorator >=4.0.0
- h5py
- libgcc # [linux or osx]
- matplotlib
- mdtraj
- msmtools >=1.2
- numpy >=1.9 # [not (win and (py35 or py36))]
- numpy >=1.9 # [win and py35]
- numpy >=1.11 # [win and py36]
- pathos
- psutil >3.1
- python >=3
- pyyaml
- scipy
- setuptools
- thermotools >=0.2.6
- tqdm
test:
source_files:
- conftest.py
- setup.cfg
files:
- matplotlibrc
requires:
- pytest
- pytest-cov
# TODO: disabled on win64, until https://bugs.python.org/issue31701 is fixed.
- pytest-faulthandler # [not win]
- pytest-xdist
- scikit-learn
# https://github.com/Frozenball/pytest-sugar/issues/124
#- pytest-sugar
about:
home: http://emma-project.org
license: GNU Lesser Public License v3+
summary: "EMMA: Emma's Markov Model Algorithms"