Skip to content
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
85 changes: 85 additions & 0 deletions recipes/pyflowy/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
schema_version: 1

context:
name: pyflowy
version: 0.0.1

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

source:
url: https://pypi.org/packages/source/${{ name[0] }}/${{ name }}/pyflowy-${{ version }}.tar.gz
sha256: babe8f58e1d2cc3784a87a50bfbb904cac088ad51259a7a2ccb835d5e3f0dfd1

build:
skip:
- win
- osx
number: 0
script:
- ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation

requirements:
build:
- ${{ compiler('c') }}
- ${{ compiler('cxx') }}
- ${{ stdlib('c') }}
- cmake
- meson
- ninja
- xtensor <0.25.0
- xtensor-blas
- xtensor-python
- if: (build_platform != target_platform)
then:
- cross-python_${{ target_platform }}
- numpy
- pybind11 >=2.12.0
- python
host:
- fmt
- hdf5
- libcblas
- libnetcdf
- meson-python
- pip
- pkgconfig
- pybind11
- python
- numpy
run:
- fmt
- hdf5
- libnetcdf
- numpy
- pybind11 >=2.12.0
- python

tests:
- python:
imports:
- pyflowy
- script:
- pip check
requirements:
run:
- pip

about:
homepage: https://pypi.org/project/pyflowy/
license: GPL-3.0-only AND MIT
license_file:
- LICENSE
- subprojects/pdf_cpplib/LICENSE
- subprojects/flowy/LICENSE
- subprojects/flowy/thirdparty/tsl/LICENSE
license_family: BSD
summary: "Python bindings for flowy"
repository: https://github.com/flowy-code/pyflowy

extra:
recipe-maintainers:
- HaoZeke
- amritagos
- MSallermann