Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
danehkar committed Oct 14, 2020
1 parent 37eabf3 commit 35aef05
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions conda.recipe/README.md
@@ -0,0 +1 @@
This is a recipe for building the current development package into a conda binary.
2 changes: 2 additions & 0 deletions conda.recipe/bld.bat
@@ -0,0 +1,2 @@
@echo off
%PYTHON% setup.py install
2 changes: 2 additions & 0 deletions conda.recipe/build.sh
@@ -0,0 +1,2 @@
#!/bin/sh
$PYTHON setup.py install
48 changes: 48 additions & 0 deletions conda.recipe/meta.yaml
@@ -0,0 +1,48 @@
{% set name = "pyequib" %}
{% set version = "0.3.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyequib-{{ version }}.tar.gz
sha256: e5a1d6412500f690df8c974d8cbe5399ce6d76a9a44f4d04b160b2738f032704

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

requirements:
host:
- pip
- python >=3.8
- numpy >=1.17
- scipy >=1.2
- atomneb >=0.2
run:
- python >=3.8
- numpy >=1.17
- scipy >=1.2
- atomneb >=0.2

test:
imports:
- pyequib
commands:
- pip check
requires:
- pip

about:
home: https://github.com/equib/pyEQUIB
license: GPL-2.0-or-later
license_file: LICENSE
summary: 'pyEQUIB: Python Package for Plasma Diagnostics and Abundance Analysis'
dev_url: https://github.com/equib/pyEQUIB
doc_url: https://pypi.python.org/pypi/pyequib

extra:
recipe-maintainers:
- danehkar

0 comments on commit 35aef05

Please sign in to comment.