Skip to content

Commit 15c1926

Browse files
authored
Merge pull request #10114 from pandera-dev/recipe/pandera
add pandera conda-forge recipe
2 parents afda300 + 6e7e8bc commit 15c1926

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

recipes/pandera/meta.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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

0 commit comments

Comments
 (0)