File tree Expand file tree Collapse file tree 7 files changed +64
-5
lines changed Expand file tree Collapse file tree 7 files changed +64
-5
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ package :
2
+ name : mpl-probscale
3
+ version : 0.1.1
4
+
5
+ source :
6
+ path : ../../
7
+ # patches:
8
+ # List any patch files here
9
+ # - fix.patch
10
+
11
+ build :
12
+ number : 1
13
+
14
+ requirements :
15
+ build :
16
+ - python
17
+ - numpy
18
+ - matplotlib
19
+
20
+ run :
21
+ - python
22
+ - numpy
23
+ - matplotlib
24
+ - nose
25
+
26
+ test :
27
+ imports :
28
+ - probscale
29
+
30
+ commands :
31
+ - python -c "import matplotlib; matplotlib.use('agg'); import probscale; probscale.test()"
32
+
33
+ requires :
34
+ - nose
35
+ - scipy
36
+
37
+ about :
38
+ home : http://phobson.github.io/mpl-probscale/
39
+ license : BSD License
40
+ summary : ' Probability scales for matplotlib.'
41
+
42
+ # See
43
+ # http://docs.continuum.io/conda/build.html for
44
+ # more information about meta.yaml/configure
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 @@ -22,17 +22,14 @@ requirements:
22
22
- python
23
23
- numpy
24
24
- matplotlib
25
+ - nose
25
26
26
27
test :
27
28
imports :
28
29
- probscale
29
30
30
31
commands :
31
- - nosetests
32
-
33
- requires :
34
- - nose
35
- - scipy
32
+ - python -c "import matplotlib; matplotlib.use('agg'); import probscale; probscale.test()"
36
33
37
34
about :
38
35
home : http://phobson.github.io/mpl-probscale/
Original file line number Diff line number Diff line change 50
50
platforms = PLATFORMS ,
51
51
classifiers = CLASSIFIERS ,
52
52
install_requires = INSTALL_REQUIRES ,
53
+ zip_safe = False ,
53
54
)
You can’t perform that action at this time.
0 commit comments