diff --git a/recipes/configmypy/meta.yaml b/recipes/configmypy/meta.yaml new file mode 100644 index 0000000000000..c9755d4e5b7e3 --- /dev/null +++ b/recipes/configmypy/meta.yaml @@ -0,0 +1,45 @@ +{% set name = "configmypy" %} +{% set version = "0.2.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/configmypy-{{ version }}.tar.gz + sha256: a517921d18656844dae6831665cbf7718f153876b9cbc526f8bca6a6fb8cd28a + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python {{ python_min }} + - setuptools + - pip + run: + - python >={{ python_min }} + - pytest + - pytest-mock + - ruamel.yaml + +test: + imports: + - configmypy + commands: + - pip check + requires: + - python {{ python_min }} + - pip + +about: + home: https://github.com/JeanKossaifi/configmypy + summary: Fast and easy configuration of Python projects. + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - sarthakpati diff --git a/recipes/neuraloperator/meta.yaml b/recipes/neuraloperator/meta.yaml new file mode 100644 index 0000000000000..4a6f87503c04c --- /dev/null +++ b/recipes/neuraloperator/meta.yaml @@ -0,0 +1,53 @@ +{% set name = "neuraloperator" %} +{% set version = "1.0.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/neuraloperator-{{ version }}.tar.gz + sha256: caac44f3f83d58cd630fff249e465ad87ee8241e17daa75f0f1d6000c1989b84 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python {{ python_min }} + - setuptools >=64 + - pip + run: + - python >={{ python_min }} + - wandb + - ruamel_yaml + - configmypy + - tensorly + - tensorly-torch + - torch-harmonics ==0.7.3 + - matplotlib-base + - numpy >=1.25 + - opt-einsum + - h5py + - zarr + +test: + imports: + - neuralop + commands: + - pip check + requires: + - python {{ python_min }} + - pip + +about: + home: https://github.com/neuraloperator/neuraloperator + summary: 'NeuralOperator: Learning in Infinite Dimensions' + license: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - sarthakpati