Commit 8b40e3f 1 parent 261d714 commit 8b40e3f Copy full SHA for 8b40e3f
File tree 2 files changed +5
-5
lines changed
conda/recipes/rapids-build-backend
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
{% set pyproject_data = load_file_data("pyproject.toml") %}
4
4
{% set version = pyproject_data["project"]["version"] %}
5
- {% set summary = pyproject_data["project"]["description"] %}
6
5
7
6
package :
8
7
name : rapids-build-backend
@@ -30,14 +29,14 @@ requirements:
30
29
{% endfor %}
31
30
32
31
about :
33
- home : {{ data ["project"]["urls"]["Homepage"] }}
32
+ home : {{ pyproject_data ["project"]["urls"]["Homepage"] }}
34
33
license : {{ pyproject_data["project"]["license"]["text"] }}
35
34
license_file : {{ pyproject_data["tool"]["setuptools"]["license-files"][0] }}
36
- summary : {{ summary }}
35
+ summary : {{ pyproject_data["project"]["description"] }}
37
36
description : |
38
37
This package contains the PEP 517 build backend adapter used by all of
39
38
RAPIDS. It does not directly perform builds, but rather performs various
40
39
RAPIDS-specific metadata manipulations before calling down to another build
41
40
backend like setuptools to finish the job.
42
- dev_url : {{ data ["project"]["urls"]["Source"] }}
43
- doc_url : {{ data ["project"]["urls"]["Documentation"] }}
41
+ dev_url : {{ pyproject_data ["project"]["urls"]["Source"] }}
42
+ doc_url : {{ pyproject_data ["project"]["urls"]["Documentation"] }}
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ test = [
33
33
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
34
34
35
35
[project .urls ]
36
+ Documentation = " https://github.com/rapidsai/rapids-build-backend"
36
37
Homepage = " https://github.com/rapidsai/rapids-build-backend"
37
38
Issues = " https://github.com/rapidsai/rapids-build-backend/issues"
38
39
Source = " https://github.com/rapidsai/rapids-build-backend"
You can’t perform that action at this time.
0 commit comments