dmlc--dgl
36 行
697 B
YAML
36 行
697 B
YAML
{% set use_cuda = environ.get('USE_CUDA', False) %}
|
|
{% set package_name = 'dgl' + environ.get('DGL_PACKAGE_SUFFIX', '') %}
|
|
package:
|
|
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
|
|
version: "0.6.1"
|
|
|
|
source:
|
|
git_rev: 0.6.x
|
|
git_url: https://github.com/dmlc/dgl.git
|
|
|
|
requirements:
|
|
build:
|
|
- python {{ python }}
|
|
- setuptools
|
|
- cmake
|
|
- git
|
|
- cython
|
|
run:
|
|
- python
|
|
- numpy
|
|
- scipy
|
|
- networkx
|
|
- requests
|
|
- vs2015_runtime # [win]
|
|
- cudatoolkit {{ CUDA_VER }} # [use_cuda]
|
|
|
|
build:
|
|
script_env:
|
|
- USE_CUDA
|
|
- CUDA_VER
|
|
|
|
about:
|
|
home: https://github.com/dmlc/dgl.git
|
|
license_file: {{ environ.get('SRC_DIR') }}/LICENSE
|
|
license: Apache
|