Skip to content

Commit

Permalink
Merge pull request #228 from markotoplak/conda
Browse files Browse the repository at this point in the history
Conda package recipe
  • Loading branch information
borondics authored Oct 30, 2018
2 parents 3b67293 + ea39c68 commit a9e8b84
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set data = load_setup_py_data() %}
{% set version = data['version'] %}

package:
name: orange-spectroscopy
version: {{ data['version'] }}

source:
git_url: ../

build:
number: 0
noarch: python
script:
- cd doc && make htmlhelp && cd ..
- python setup.py install --single-version-externally-managed --record record.txt

requirements:
build:
- python
- sphinx
- setuptools
- recommonmark
run:
- python
- orange3 >=3.11
- scipy >=0.14.0
- spectral >=0.18
- serverfiles >=0.2
- AnyQt >=0.0.6
- pyqtgraph >=0.10.0
- colorcet
- h5py

test:
imports:
- orangecontrib.spectroscopy
commands:
- test -f $PREFIX/help/orange-spectroscopy/index.html # [unix]

about:
home: https://github.com/quasars
license: GPL-3
license_family: GPL
summary: 'Orange-Spectroscopy'

extra:
recipe-maintainers:
- markotoplak

0 comments on commit a9e8b84

Please sign in to comment.