Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit d308fb7

Browse files
Merge pull request #24 from plotly/conda_recipe
Add conda recipe
2 parents 8cda34b + 769a973 commit d308fb7

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

recipe/meta.yaml

+32
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_express
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

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
url="https://github.com/plotly/plotly_express",
2222
author="Nicolas Kruchten",
2323
author_email="[email protected]",
24+
license='MIT',
2425
classifiers=[
2526
"Development Status :: 4 - Beta",
2627
"Topic :: Scientific/Engineering :: Visualization",
@@ -32,6 +33,6 @@
3233
"pandas>=0.20.0",
3334
"plotly>=3.7.1",
3435
"statsmodels>=0.9.0",
35-
"scipy >= 0.14",
36+
"scipy>=0.14",
3637
],
3738
)

0 commit comments

Comments
 (0)