File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
- - " 2.7"
4
3
- " 3.6"
5
4
install :
6
5
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
7
6
- bash miniconda.sh -b -p $HOME/miniconda
8
7
- export PATH="$HOME/miniconda/bin:$PATH"
9
8
- hash -r
10
9
- conda config --set always_yes yes --set changeps1 no
11
- - conda config --add channels omnia
12
10
- conda update -q conda
13
11
- conda info -a
14
12
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytest numpy
15
13
- conda install ambertools=17 -n test-environment -c http://ambermd.org/downloads/ambertools/conda/
16
- - conda install vmd-python networkx psfgen -n test-environment -c conda-forge
14
+ - conda install vmd-python networkx psfgen parmed -n test-environment -c conda-forge
17
15
- source activate test-environment
18
16
- export AMBERHOME="$HOME/miniconda/envs/test-environment"
19
17
- python setup.py install
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ def run(self):
32
32
install_requires = ["numpy" ,
33
33
"networkx>=1.11" ,
34
34
"vmd-python>=2.0.4" ,
35
- "parmed" ],
35
+ "parmed" ,
36
+ "psfgen" ],
36
37
entry_points = {
37
38
"console_scripts" : [
38
39
"dabble = dabble.__main__:main"
You can’t perform that action at this time.
0 commit comments