-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathmeta.yaml
51 lines (42 loc) · 1.01 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% set data = load_file_data('../../pyproject.toml', from_recipe_dir=True) %}
package:
name: bokeh
version: {{ VERSION }}
source:
url: ../../dist/bokeh-{{ VERSION }}-py3-none-any.whl
build:
noarch: python
script:
- {{ PYTHON }} -m pip install -vv --no-deps bokeh-{{ VERSION }}-py3-none-any.whl
script_env:
- VERSION
entry_points:
- bokeh = bokeh.__main__:main
extra:
channels:
- bokeh
- conda-forge
requirements:
build:
- jinja2
- packaging
- python
- python-dateutil
- pyyaml
- ripgrep
- setuptools >=62.3.3
- yaml
host:
- python >=3.10
run:
- python >=3.10
{% for dep in data['project']['dependencies'] %}
- {{ dep.lower() }}
{% endfor %}
about:
license: BSD-3-Clause
summary: {{ data['project']['description'] }}
description: {{ data['project']['readme'] }}
home: {{ data['project']['urls']['homepage'] }}
doc_url: {{ data['project']['urls']['documentation'] }}
dev_url: {{ data['project']['urls']['repository'] }}