This repository was archived by the owner on Aug 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 21
21
url = "https://github.com/plotly/plotly_express" ,
22
22
author = "Nicolas Kruchten" ,
23
23
author_email = "nicolas@plot.ly" ,
24
+ license = 'MIT' ,
24
25
classifiers = [
25
26
"Development Status :: 4 - Beta" ,
26
27
"Topic :: Scientific/Engineering :: Visualization" ,
32
33
"pandas>=0.20.0" ,
33
34
"plotly>=3.7.1" ,
34
35
"statsmodels>=0.9.0" ,
35
- "scipy >= 0.14" ,
36
+ "scipy>= 0.14" ,
36
37
],
37
38
)
You can’t perform that action at this time.
0 commit comments