-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
67 lines (60 loc) · 1.44 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
{% set name = "cosmic_profiles" %}
{% set version = "1.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 7f6ee277cded98c0406e04d1570276b7e220120042b2ed0a06490b8830647630
build:
number: 0
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed .
requirements:
build:
- cmake
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- libgomp # [linux]
- llvm-openmp # [osx]
host:
- python
- pip
- setuptools
- cython
- cythongsl
- numpy >=1.19.2
run:
- python
- {{ pin_compatible('numpy') }}
- scipy
- matplotlib-base
- scikit-learn
- cython
- cythongsl
- mpi4py
- pathos
- h5py
- psutil
- libgomp # [linux]
- llvm-openmp # [osx]
test:
imports:
- cosmic_profiles
source_files:
- cosmic_profiles/tests/test_densities.py
- cosmic_profiles/tests/test_ex_scripts.py
- cosmic_profiles/tests/test_shapes.py
requires:
- pytest
commands:
- pytest cosmic_profiles/tests/
about:
home: https://github.com/tibordome/cosmic_profiles
license: MIT
license_family: MIT
license_file: LICENSE.md
summary: "Implements 3D point cloud algorithms for estimation and fitting of shape and density profiles"
dev_url: https://github.com/tibordome/cosmic_profiles
extra:
recipe-maintainers:
- tibordome