source: sasview/build_tools/conda/pyopencl/meta.yaml @ 0037131

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 0037131 was 0037131, checked in by Peter Parker, 9 years ago

Update meta.yaml

Setup tools is needed at run time since pkg_resources is a requirement.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1package:
2  name: pyopencl
3  version: !!str 2015.1
4
5source:
6  fn: pyopencl-2015.1.tar.gz
7  url: https://pypi.python.org/packages/source/p/pyopencl/pyopencl-2015.1.tar.gz
8  md5: c7b9dd0bb113ad852dae6fdadd417899
9#  patches:
10   # List any patch files here
11   # - fix.patch
12
13# build:
14  #preserve_egg_dir: True
15  #entry_points:
16    # Put any entry points (scripts to be generated automatically) here. The
17    # syntax is module:function.  For example
18    #
19    # - pyopencl = pyopencl:main
20    #
21    # Would create an entry point called pyopencl that calls pyopencl.main()
22
23
24  # If this is a new build for the same version, increment the build
25  # number. If you do not include this key, it defaults to 0.
26  # number: 1
27
28requirements:
29  build:
30    - python
31    - setuptools
32    - numpy
33    - pytools >=2014.2
34    - pytest >=2
35    - decorator >=3.2.0
36    - appdirs >=1.4.0
37
38  run:
39    - python
40    - setuptools
41    - numpy
42    - pytools >=2014.2
43    - pytest >=2
44    - decorator >=3.2.0
45    - appdirs >=1.4.0
46
47test:
48  # Python imports
49  imports:
50    - pyopencl
51    - pyopencl.characterize
52    - pyopencl.compyte
53
54  #commands:
55    # You can put test commands to be run here.  Use this to test that the
56    # entry points work.
57
58
59  # You can also put a file called run_test.py in the recipe that will be run
60  # at test time.
61
62  # requires:
63    # Put any additional test requirements here.  For example
64    # - nose
65
66about:
67  home: http://mathema.tician.de/software/pyopencl
68  license:  MIT License
69  summary: 'Python wrapper for OpenCL'
70
71# See
72# http://docs.continuum.io/conda/build.html for
73# more information about meta.yaml
Note: See TracBrowser for help on using the repository browser.