Skip to content

Commit

Permalink
more URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Jun 13, 2024
1 parent 261d714 commit 8b40e3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 4 additions & 5 deletions conda/recipes/rapids-build-backend/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

{% set pyproject_data = load_file_data("pyproject.toml") %}
{% set version = pyproject_data["project"]["version"] %}
{% set summary = pyproject_data["project"]["description"] %}

package:
name: rapids-build-backend
Expand Down Expand Up @@ -30,14 +29,14 @@ requirements:
{% endfor %}

about:
home: {{ data["project"]["urls"]["Homepage"] }}
home: {{ pyproject_data["project"]["urls"]["Homepage"] }}
license: {{ pyproject_data["project"]["license"]["text"] }}
license_file: {{ pyproject_data["tool"]["setuptools"]["license-files"][0] }}
summary: {{ summary }}
summary: {{ pyproject_data["project"]["description"] }}
description: |
This package contains the PEP 517 build backend adapter used by all of
RAPIDS. It does not directly perform builds, but rather performs various
RAPIDS-specific metadata manipulations before calling down to another build
backend like setuptools to finish the job.
dev_url: {{ data["project"]["urls"]["Source"] }}
doc_url: {{ data["project"]["urls"]["Documentation"] }}
dev_url: {{ pyproject_data["project"]["urls"]["Source"] }}
doc_url: {{ pyproject_data["project"]["urls"]["Documentation"] }}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ test = [
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.

[project.urls]
Documentation = "https://github.com/rapidsai/rapids-build-backend"
Homepage = "https://github.com/rapidsai/rapids-build-backend"
Issues = "https://github.com/rapidsai/rapids-build-backend/issues"
Source = "https://github.com/rapidsai/rapids-build-backend"
Expand Down

0 comments on commit 8b40e3f

Please sign in to comment.