forked from mh105/somata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
53 lines (46 loc) · 1.05 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
{% set name = "somata" %}
{% set version = "0.4.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: cd51a1a6cd58ca79ebccfe4113ced6024491bc5431749a80c132101d2caa699f
build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python >=3.8
run:
- python >=3.8
- numpy >=1.22
- torch>=1.12.1
- codetiming
- colorcet
- joblib
- kneed
- matplotlib-base
- mne
- scipy
- spectrum
- tqdm
test:
requires:
- pytest
imports:
- somata
about:
home: https://github.com/mh105/somata
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: "State-space Oscillator Modeling And Time-series Analysis"
doc_url: https://pypi.org/project/somata/
doc_source_url: https://github.com/mh105/somata-dev/blob/master/README.md
dev_url: https://github.com/mh105/somata
extra:
recipe-maintainers:
- mh105