-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
meta.yaml
59 lines (52 loc) · 1.45 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{% set name = "pyogrio" %}
{% set version = "0.10.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/geopandas/pyogrio/releases/download/v{{ version }}/pyogrio-{{ version }}.tar.gz
sha256: ec051cb568324de878828fae96379b71858933413e185148acb6c162851ab23c
build:
number: 0
skip: true # [py<38 or python_impl == 'pypy']
requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ stdlib("c") }}
- {{ compiler('cxx') }}
host:
- python
- pip
- setuptools
- cython
- libgdal-core
- versioneer
- tomli # [py<311]
run:
- python
- libgdal-core
- packaging
- numpy
test:
imports:
- pyogrio
about:
home: https://github.com/geopandas/pyogrio/
license: MIT
license_family: MIT
license_file: LICENSE
summary: Vectorized vector I/O using GDAL
description: |
Provide faster I/O using GDAL OGR to read / write vector geospatial files.
Intended for use with libraries that consume WKB for their internal
constructs, such as pygeos.
doc_url: https://pyogrio.readthedocs.io/
dev_url: https://github.com/geopandas/pyogrio
extra:
recipe-maintainers:
- brendan-ward
- jorisvandenbossche
- martinfleis