1{% set version = "0.1.dev" %} 2 3package: 4 name: aten 5 version: {{ version }} 6 7source: 8 path: .. 9 10build: 11 number: 1 12 skip: True # [win] 13 script_env: 14 - CONDA_CMAKE_ARGS 15 16requirements: 17 build: 18 - cmake 19 - pyyaml 20 - setuptools 21 - python 22 - mkl # [not osx] 23 run: 24 - mkl # [not osx] 25 26about: 27 home: https://github.com/pytorch/pytorch 28 license: BSD 29 summary: A TENsor library for C++17 30 31extra: 32 recipe-maintainers: 33 - ezyang 34