blob: ff55c6c010103f2c3d8cb3924ed30a8a3f67ed57 (
plain)
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
|
package:
name: ccpi-plugins
version: {{ environ['CIL_VERSION'] }}
build:
preserve_egg_dir: False
script_env:
- CIL_VERSION
# number: 0
test:
requires:
- python-wget
- cvxpy # [ unix and py36 and np115 ]
source_files:
- ./test # [win]
- ./ccpi/Wrappers/Python/test # [not win]
commands:
- python -c "import os; print (os.getcwd())"
- python -m unittest discover # [win]
- python -m unittest discover -s ccpi/Wrappers/Python/test # [not win]
requirements:
build:
- python
- numpy {{ numpy }}
- setuptools
run:
- python
- {{ pin_compatible('numpy') }}
- ccpi-framework
- ccpi-reconstruction
- ccpi-regulariser
- matplotlib
about:
home: http://www.ccpi.ac.uk
license: Apache 2.0 License
summary: 'CCPi Framework Plugins'
|