https://github.com/tensorly/tensorly
Raw File
Tip revision: 63fc5c5d4d3352a79f4c1a1a725e767ae6dc8734 authored by Aaron Meyer on 03 April 2024, 14:09:47 UTC
Merge pull request #538 from braun-steven/main
Tip revision: 63fc5c5
meta.yaml
{% set name = "tensorly" %}
{% set version = "0.8.0" %}

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

source:
  path: ../

build:
  number: 0
  noarch: python
  script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed . -vv"

requirements:
  build:
    - python >=3.7
    - setuptools
    - pip

  run:
    - python
    - numpy
    - scipy

test:
  requires:
    - pytest

  commands:
    - TENSORLY_BACKEND='numpy' pytest -v $SP_DIR/tensorly

about:
  home: https://github.com/tensorly/tensorly/
  license: BSD-3-Clause
  license_family: BSD
  license_file: LICENSE.txt
  summary: "Tensor learning in Python"
  description: |
    TensorLy is a Python library that aims at making tensor learning simple 
    and accessible. It allows to easily perform tensor decomposition, 
    tensor learning and tensor algebra. Its backend system allows to 
    seamlessly perform computation with NumPy, PyTorch, TensorFlow,
    CuPy or JAX, and run methods at scale on CPU or GPU.
  doc_url: http://tensorly.org
  dev_url: https://github.com/tensorly/tensorly

extra:
  recipe-maintainers:
    - JeanKossaifi
back to top