Commit 261d714 1 parent b6d7aad commit 261d714 Copy full SHA for 261d714
File tree 2 files changed +14
-3
lines changed
conda/recipes/rapids-build-backend
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ requirements:
30
30
{% endfor %}
31
31
32
32
about :
33
- home : https://rapids.ai/
33
+ home : {{ data["project"]["urls"]["Homepage"] }}
34
34
license : {{ pyproject_data["project"]["license"]["text"] }}
35
35
license_file : {{ pyproject_data["tool"]["setuptools"]["license-files"][0] }}
36
36
summary : {{ summary }}
39
39
RAPIDS. It does not directly perform builds, but rather performs various
40
40
RAPIDS-specific metadata manipulations before calling down to another build
41
41
backend like setuptools to finish the job.
42
- doc_url : https://docs.rapids.ai/
43
- dev_url : https://github.com/rapidsai/rapids-build-backend
42
+ dev_url : {{ data["project"]["urls"]["Source"] }}
43
+ doc_url : {{ data["project"]["urls"]["Documentation"] }}
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ dependencies = [
18
18
" tomlkit" ,
19
19
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
20
20
license = { text = " Apache 2.0" }
21
+ classifiers = [
22
+ " Intended Audience :: Developers" ,
23
+ " License :: OSI Approved :: Apache Software License" ,
24
+ " Programming Language :: Python :: 3" ,
25
+ " Topic :: Software Development :: Build Tools" ,
26
+ ]
21
27
readme = { file = " README.md" , content-type = " text/markdown" }
22
28
23
29
[project .optional-dependencies ]
@@ -26,6 +32,11 @@ test = [
26
32
" pytest" ,
27
33
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
28
34
35
+ [project .urls ]
36
+ Homepage = " https://github.com/rapidsai/rapids-build-backend"
37
+ Issues = " https://github.com/rapidsai/rapids-build-backend/issues"
38
+ Source = " https://github.com/rapidsai/rapids-build-backend"
39
+
29
40
[tool .setuptools ]
30
41
license-files = [" LICENSE" ]
31
42
You can’t perform that action at this time.
0 commit comments