Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 126d392

Browse files
committed
Add initial conda recipe/CHANGELOG.md files for chart-studio and
plotly-geo packages
1 parent 65828f4 commit 126d392

File tree

4 files changed

+64
-0
lines changed

4 files changed

+64
-0
lines changed

packages/python/chart-studio/CHANGELOG.md

Whitespace-only changes.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{% set sdata = load_setup_py_data() %}
2+
3+
package:
4+
name: chart-studio
5+
version: {{ sdata['version'] }}
6+
7+
source:
8+
path: ..
9+
10+
build:
11+
noarch: python
12+
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -q"
13+
14+
requirements:
15+
build:
16+
- python
17+
- pip
18+
run:
19+
- python
20+
{% for dep in sdata.get('install_requires',{}) %}
21+
- {{ dep }}
22+
{% endfor %}
23+
24+
test:
25+
imports:
26+
- plotly_express
27+
28+
about:
29+
home: {{ sdata['url'] }}
30+
summary: {{ sdata['description'] }}
31+
license: {{ sdata['license'] }}
32+
license_file: LICENSE.txt

packages/python/plotly-geo/CHANGELOG.md

Whitespace-only changes.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{% set sdata = load_setup_py_data() %}
2+
3+
package:
4+
name: plotly-geo
5+
version: {{ sdata['version'] }}
6+
7+
source:
8+
path: ..
9+
10+
build:
11+
noarch: python
12+
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -q"
13+
14+
requirements:
15+
build:
16+
- python
17+
- pip
18+
run:
19+
- python
20+
{% for dep in sdata.get('install_requires',{}) %}
21+
- {{ dep }}
22+
{% endfor %}
23+
24+
test:
25+
imports:
26+
- plotly_express
27+
28+
about:
29+
home: {{ sdata['url'] }}
30+
summary: {{ sdata['description'] }}
31+
license: {{ sdata['license'] }}
32+
license_file: LICENSE.txt

0 commit comments

Comments
 (0)