-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
857dd13
commit 665e293
Showing
2 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{% set name = "sparselt" %} | ||
{% set version = "0.1.2" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/LiamBindle/sparselt/archive/{{ version }}.tar.gz | ||
sha256: 76ed9f616e0247cddeb1490a6f98d20028db3d9e2822824037bfde23a086034d | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- pip | ||
- python | ||
run: | ||
- netcdf4 | ||
- numpy | ||
- python | ||
- scipy | ||
- xarray | ||
|
||
test: | ||
imports: | ||
- sparselt | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/LiamBindle/sparselt | ||
license: MIT | ||
license_file: LICENSE | ||
summary: A small library for regridding Earth system data with vectorized sparse linear transforms. | ||
|
||
extra: | ||
recipe-maintainers: | ||
- LiamBindle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='sparselt', | ||
version='0.1.0', | ||
version='0.1.2', | ||
author="Liam Bindle", | ||
author_email="[email protected]", | ||
description="A small library for regridding Earth system model data.", | ||
|
@@ -17,4 +17,4 @@ | |
'xarray', | ||
'scipy', | ||
], | ||
) | ||
) |