Skip to content

Commit 8b40e3f

Browse files
committed
more URLs
1 parent 261d714 commit 8b40e3f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

conda/recipes/rapids-build-backend/meta.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
{% set pyproject_data = load_file_data("pyproject.toml") %}
44
{% set version = pyproject_data["project"]["version"] %}
5-
{% set summary = pyproject_data["project"]["description"] %}
65

76
package:
87
name: rapids-build-backend
@@ -30,14 +29,14 @@ requirements:
3029
{% endfor %}
3130

3231
about:
33-
home: {{ data["project"]["urls"]["Homepage"] }}
32+
home: {{ pyproject_data["project"]["urls"]["Homepage"] }}
3433
license: {{ pyproject_data["project"]["license"]["text"] }}
3534
license_file: {{ pyproject_data["tool"]["setuptools"]["license-files"][0] }}
36-
summary: {{ summary }}
35+
summary: {{ pyproject_data["project"]["description"] }}
3736
description: |
3837
This package contains the PEP 517 build backend adapter used by all of
3938
RAPIDS. It does not directly perform builds, but rather performs various
4039
RAPIDS-specific metadata manipulations before calling down to another build
4140
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"] }}

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ test = [
3333
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
3434

3535
[project.urls]
36+
Documentation = "https://github.com/rapidsai/rapids-build-backend"
3637
Homepage = "https://github.com/rapidsai/rapids-build-backend"
3738
Issues = "https://github.com/rapidsai/rapids-build-backend/issues"
3839
Source = "https://github.com/rapidsai/rapids-build-backend"

0 commit comments

Comments
 (0)