File tree Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ " %PYTHON% " setup.py install
2
+ if errorlevel 1 exit 1
3
+
4
+ :: Add more build steps here, if they are necessary.
5
+
6
+ :: See
7
+ :: http://docs.continuum.io/conda/build.html
8
+ :: for a list of environment variables that are set during the build process.
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ $PYTHON setup.py install
4
+
5
+ # Add more build steps here, if they are necessary.
6
+
7
+ # See
8
+ # http://docs.continuum.io/conda/build.html
9
+ # for a list of environment variables that are set during the build process.
Original file line number Diff line number Diff line change
1
+ package :
2
+ name : mpl-probscale
3
+ version : v0.1.0
4
+
5
+ source :
6
+ git_url : https://github.com/phobson/mpl-probscale.git
7
+ git_tag : v0.1.0
8
+ # patches:
9
+ # List any patch files here
10
+ # - fix.patch
11
+
12
+ build :
13
+ number : 1
14
+
15
+ requirements :
16
+ build :
17
+ - python
18
+ - numpy
19
+ - matplotlib
20
+ - scipy
21
+
22
+ run :
23
+ - python
24
+ - numpy
25
+ - matplotlib
26
+ - scipy
27
+
28
+ test :
29
+ imports :
30
+ - probscale
31
+
32
+ commands :
33
+ - nosetests
34
+
35
+ requires :
36
+ - nose
37
+
38
+ about :
39
+ home : http://phobson.github.io/mpl-probscale/
40
+ license : BSD License
41
+ summary : ' Probability scales for matplotlib.'
42
+
43
+ # See
44
+ # http://docs.continuum.io/conda/build.html for
45
+ # more information about meta.yaml/configure
You can’t perform that action at this time.
0 commit comments