diff --git a/conda/build.sh b/conda/build.sh deleted file mode 100644 index a82ea34a..00000000 --- a/conda/build.sh +++ /dev/null @@ -1 +0,0 @@ -echo "Building" diff --git a/conda/meta.yaml b/conda/meta.yaml index 0b83e557..e57f7015 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,13 +1,42 @@ +{% set name = "bigtree" %} +{% set version = "0.14.2" %} + package: - name: bigtree - version: 0.14.3 + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: https://github.com/kayjan/{{ name }}/archive/refs/tags/{{ version }}.tar.gz + sha256: 21f5c61a48db0c731b00e5e08a66f16e231960accf64e4ae6d80c3fc91eb9c54 + +build: + number: 0 + noarch: python + script: "{{ PYTHON }} -m pip install . -vv" requirements: + host: + - python >=3.7 + - hatchling + - pip run: - - python + - python >=3.8 + +test: + imports: + - bigtree + requires: + - pip + - pytest about: home: https://github.com/kayjan/bigtree license: MIT + license_family: MIT + license_file: LICENSE summary: Tree Implementation and Methods for Python, integrated with Python list, dictionary, and pandas DataFrame. doc_url: https://bigtree.readthedocs.io/en/latest/ + +extra: + recipe-maintainers: + - kayjan