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 recipe for SuchTree #52959

Merged
merged 8 commits into from
Dec 24, 2024
Merged
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
53 changes: 53 additions & 0 deletions recipes/suchtree/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set name = "SuchTree" %}
{% set version = "1.2" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0]|lower }}/{{ name }}/{{ name|lower }}-{{ version }}.tar.gz"
sha256: c45af37beb1a210097151b807ccde9966c72a3cfa99ecfe80251bcc0a14f1f60

build:
number: 0
run_exports:
- {{ pin_subpackage( "suchtree", max_pin="x.x" ) }}
script: "{{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation"

requirements:
build:
- {{ compiler('c') }}
host:
- cython
- python
- pip
- setuptools
- scipy
- numpy >=2.0
run:
- python
- dendropy
- pandas >=2.1
- numpy >=2.0
- scipy

test:
imports:
- SuchTree

about:
home: https://github.com/ryneches/SuchTree/
license: BSD
license_family: BSD
license_file: LICENSE
summary: "A python library for doing fast, thread-safe computations on phylogenetic trees"
doc_url: https://github.com/ryneches/SuchTree/blob/master/README.md
dev_url: https://github.com/ryneches/SuchTree/

extra:
identifiers:
- biotools:suchtree
- doi:10.21105/joss.00678
recipe-maintainers:
- ryneches