Skip to content

Commit

Permalink
ocgis
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Mar 19, 2016
1 parent 9862424 commit 19e62d6
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/ocgis/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" setup.py install --single-version-externally-managed --record record.txt
if errorlevel 1 exit 1
46 changes: 46 additions & 0 deletions recipes/ocgis/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set version = "1.3.0" %}

package:
name: ocgis
version: {{ version }}

source:
git_url: https://github.com/NCPP/ocgis.git
git_tag: v{{ version }}

build:
number: 0
skip: True # [py3k]
script: python setup.py install --single-version-externally-managed --record record.txt

requirements:
build:
- python
- fiona ==1.6.3
- netcdf4
- numpy
- shapely
run:
- python
- cf_units
- fiona ==1.6.3
- netcdf4
- numpy
- shapely
- rtree

test:
requires:
- nose
imports:
- ocgis

about:
home: http://ncpp.github.io/ocgis/
license: NCSA License
summary: OCGIS is short for OpenClimateGIS, a set of geoprocessing and calculation tools for CF-compliant climate datasets.

extra:
recipe-maintainers:
- ocefpaf
- bekozi
3 changes: 3 additions & 0 deletions recipes/ocgis/run_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ocgis.test import run_simple

run_simple()

0 comments on commit 19e62d6

Please sign in to comment.