Skip to content

Commit

Permalink
WIP: conda recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandera committed Jun 10, 2024
1 parent 1abce2c commit a05e604
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
7 changes: 7 additions & 0 deletions conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
python:
- 3.6
- 3.7
- 3.8

numpy:
- 1.18
46 changes: 46 additions & 0 deletions conda-recipe/h5sparse/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package:
name: "h5sparse-tensor"
version: "{{ environ.get("GIT_DESCRIBE_TAG", "0.99.9").lstrip("v") }}"

source:
path: ../..

build:
number: 1
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python

requirements:
host:
- h5py
- numpy
- python
- scipy
- six
- pip
- nose
run:
- h5py
- numpy
- python
- scipy
- six

test:
requires:
- nose
command:
- nosetest

about:
home: "https://github.com/tvandera/h5sparse"
license: MIT
license_family: MIT
license_file:
summary: "Scipy sparse matrix in HDF5."
doc_url:
dev_url:

extra:
recipe-maintainers:
- tvandera

0 comments on commit a05e604

Please sign in to comment.