Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cadnaPromise to conda-forge #28272

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions recipes/cadnaPromise/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{% set name = "cadnaPromise" %}
{% set version = "0.2.0" %}
{% set python_min = "3.10" %}

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

source:
url: https://files.pythonhosted.org/packages/8c/e6/afbf6a18cf9635a30a5e1c00c659c112caff54c33c7cd4a67bc8c1fe12cc/cadnapromise-0.2.0.tar.gz
sha256: f27785f9d9e15e4e27b0447663a6dcf4cd1c9d52841a2a4454ac677c923646e8

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


requirements:
build:
- python >={{ python_min }}
- pip
- colorlog
- python >=3.6
host:
- python {{ python_min }}
- setuptools >=61
- wheel
- pip
run:
- python >={{ python_min }}
- colorlog
- python >=3.6
- colorama
- tqdm
- regex
- pytest
- pytest-cov
- pyyaml


test:
imports:
- cadnaPromise
requires:
- python {{ python_min }}
- pytest
- pytest-cov
source_files:
- examples/test_examples.py
commands:
pip install --upgrade pip
pip install pytest-cov
pip install build
python3 -m build
pip install -U setuptools
pip install .
cd cadnaPromise/cadna
bash run_unix.sh
export CADNA_PATH=`pwd`
cd lib
bash run_unix.sh
cd ../../..
cd examples
pytest test_examples.py

about:
home: https://github.com/PEQUAN/cadnaPromise
summary: 'Software for simulating arbitrary precision and precision tuning.'
license: GPL-2.0-or-later
license_family: GPL
license_file: LICENSE
dev_url: https://github.com/PEQUAN/cadnaPromise

extra:
recipe-maintainers:
- chenxinye
Loading