Skip to content

Commit

Permalink
Add recipe for SuchTree (#52959)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryneches authored Dec 24, 2024
1 parent 42d3587 commit 2eaddb7
Showing 1 changed file with 53 additions and 0 deletions.
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

0 comments on commit 2eaddb7

Please sign in to comment.