File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ {% set name = "pandera" %}
2
+ {% set version = "0.2.7" %}
3
+
4
+ package :
5
+ name : {{ name|lower }}
6
+ version : {{ version }}
7
+
8
+ source :
9
+ url : https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
10
+ sha256 : 45634e17709c9490192ed9f17a9a32ebe69dd9657c7025e2d1afb9dff86ed8a9
11
+
12
+ build :
13
+ noarch : python
14
+ number : 0
15
+ script : " {{ PYTHON }} -m pip install . -vv"
16
+
17
+ requirements :
18
+ host :
19
+ - python >=3.5
20
+ - pip
21
+ run :
22
+ - python >=3.5
23
+ - numpy
24
+ - pandas
25
+ - scipy
26
+ - wrapt
27
+
28
+ test :
29
+ imports :
30
+ - pandera
31
+
32
+ about :
33
+ home : https://github.com/pandera-dev/pandera
34
+ license : MIT
35
+ license_family : MIT
36
+ license_file : LICENSE.txt
37
+ summary : ' Light-weight and flexible validation for pandas data structures'
38
+ description : |
39
+ Pandas data structures hide a lot of information, and explicitly
40
+ validating them in production-critical or reproducible research
41
+ settings is a good idea.
42
+ doc_url : https://pandera.readthedocs.io/en/latest/
43
+ dev_url : https://github.com/pandera-dev/pandera
44
+
45
+ extra :
46
+ recipe-maintainers :
47
+ - cosmicBboy
You can’t perform that action at this time.
0 commit comments