-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmeta.yaml
50 lines (45 loc) · 917 Bytes
/
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
{% set data = load_setup_py_data() %}
package:
name: respy
version: {{ data.get('version') }}
source:
# git_url is nice in that it won't capture devenv stuff. However, it only captures
# committed code, so pay attention.
git_url: ../
build:
number: 0
noarch: python
requirements:
host:
- python >=3.7
run:
- python >=3.7
- click
- estimagic >=0.1.2
- hypothesis
- joblib
- fastparquet
- mkl
- numba >=0.42
- numpy>=1.21.0
- pandas >=0.24
- pytest
- python-snappy
- pyyaml
- scipy
test:
requires:
- pytest
- pytest-xdist
commands:
- pytest -n auto
source_files:
- respy
- tox.ini
about:
home: {{ data.get('url') }}
license: {{ data.get('license') }}
license_file: LICENSE
summary: {{ data.get('description') }}
dev_url: https://github.com/OpenSourceEconomics/respy
doc_url: {{ data.get('url') }}