-
Notifications
You must be signed in to change notification settings - Fork 5
/
meta.yaml
47 lines (40 loc) · 1.07 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
{% set name = "helipad" %}
{% set version = "1.6.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/helipad-{{ version }}.tar.gz
sha256: a6c63e0704c2fc09cc7acfef25c637b8587d11860ccf5c77524ed33038eba333
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python >=3.9
- setuptools >=61.0
- pip
run:
- python >=3.9
- matplotlib-base
- pillow <=10.0.0 # Not necessary explicitly, but pin version because build fails on Conda with higher versions (missing DLL?). Check again next time
- pandas
- networkx
test:
imports:
- helipad
commands:
- pip check
requires:
- pip
about:
home: https://helipad.dev
summary: An agent-based modeling framework for Python with a shallow learning curve and powerful visualization capabilities.
license: MIT
license_file: LICENSE
dev_url: https://github.com/charwick/helipad/
doc_url: https://helipad.dev/functions/
extra:
recipe-maintainers:
- charwick