summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/recipe/meta.yaml
blob: 9d0322002bc7a0fa46772b4cc7c792a07d633168 (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
43
package:
  name: ccpi-framework
  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:
    - {{ pin_compatible('numpy', max_pin='x.x') }}
    - python
    - setuptools

  run:
    - {{ pin_compatible('numpy', max_pin='x.x') }}
    - python
    - numpy
    - scipy
    - matplotlib
    - h5py
    - pillow
  
about:
  home: http://www.ccpi.ac.uk
  license:  Apache 2.0 License
  summary: 'CCPi Framework'