-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathmeta.yaml
69 lines (64 loc) · 1.47 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
60
61
62
63
64
65
66
67
68
69
{% set python_min = "3.10" %}
{% set version = "0.1.3" %}
{% set name = "paidiverpy" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 62fe5d8bdd0b96f300cb3390e72a98f2d1d10cab74592ea7a250a2f5e794564c
build:
entry_points:
- paidiverpy = cli.main:main
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
host:
- python {{ python_min }}
- setuptools >=64.0.0
- setuptools-scm
- wheel
- pip
run:
- python >={{ python_min }}
- numpy <2.0
- pandas >=2.2.2
- pillow >=10.4.0
- scikit-image >=0.24.0
- scipy >=1.14
- tqdm >=4.66.4
- PyYAML >=6.0
- openpyxl >=3.1
- shapely ==2.0.7
- geopy >=2.4.1
- geopandas >=1.0.1
- dask-image ==2024.5.3
- dask >=2024.10.0
- distributed >=2024.10.0
- jsonschema >=4.23.0
- matplotlib-base >=3.5.0
- ipython >=8.26.0
- dask-jobqueue >=0.9.0
- python-dotenv >=1.0.1
- boto3 >=1.35.92
- botocore >=1.35.92
- opencv >=4.11
test:
imports:
- cli
- paidiverpy
commands:
- pip check
- paidiverpy --help
requires:
- python {{ python_min }}
- pip
about:
summary: A library to preprocess image data.
home: https://github.com/paidiver/paidiverpy
license: Apache-2.0
license_file: LICENSE
extra:
recipe-maintainers:
- soutobias