-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeta.yaml
71 lines (64 loc) · 1.87 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
70
71
{% set name = "TidalPy" %}
{% set version = "0.6.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/tidalpy-{{ version }}.tar.gz
sha256: 16393b8fd9484180da0c906810add5b76dbfbdca97107c696bae12c1a0f243f5
build:
skip: true # [py>=313]
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ stdlib('c') }}
host:
- python
- setuptools >=64.0.0
- numpy >=1.22,<1.27
- scipy >=1.9.3,<1.14
- cython >=3.0.0
- wheel >=0.38
- cyrk >=0.8.7,<0.10
- pip
run:
- python
- numba >=0.54.1
- scipy >=1.9.3,<1.14
- platformdirs >=3.11.0,<4
- toml >=0.10.2
- dill >=0.3.2
- psutil >=5.8.0
- pathos >=0.2.0
- cyrk >=0.8.7,<0.10
- astropy
- astroquery
- matplotlib-base >=3.4.2
- cmcrameri >=1.4
- {{ pin_compatible('numpy') }}
test:
imports:
- TidalPy
commands:
- pip check
- python -c "import TidalPy; TidalPy.__version__"
requires:
- pip
about:
home: www.tidalpy.info
summary: Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python
description: |
TidalPy provides efficient tools to estimate tidal dissipation within rocky and icy worlds.
The RaidalSolver package includes tools to calculate a planet or moon's "Love" numbers.
The Tides package includes tools to estimate tidal heating and spin-orbit evolution including the effects from
higher-order eccentricity and obliquity terms which are often left out of other models.
license: CC-BY-SA-4.0
license_file: LICENSE.md
doc_url: https://github.com/jrenaud90/TidalPy/tree/main/Documentation
dev_url: https://github.com/jrenaud90/TidalPy
extra:
recipe-maintainers:
- jrenaud90