Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a recipe for pytransit. #28286

Merged
merged 4 commits into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions recipes/pytransit/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{% set name = "pytransit" %}
{% set version = "2.6.13" %}
{% set python_min = "3.10" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pytransit-{{ version }}.tar.gz
sha256: a01a235cc6cf27e15d75e5447127d05f9a2e2ded6cf4a93ceb6fce5ccce5cb58

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools
- pip
run:
- python >={{ python_min }}
- arviz
- numpy
- scipy
- pandas
- xarray
- pytables
- uncertainties
- numba
- astropy
- matplotlib-base
- tqdm
- semantic_version
- setuptools
- deprecated
- seaborn
- emcee
- pyopencl
- corner
- celerite
- meepmeep

test:
imports:
- pytransit
commands:
- pip check
requires:
hpparvi marked this conversation as resolved.
Show resolved Hide resolved
- python {{ python_min }}
- pip

about:
summary: Fast and painless exoplanet transit light curve modelling.
license: GPL-2.0-only
license_file: LICENSE
hpparvi marked this conversation as resolved.
Show resolved Hide resolved
home: https://github.com/hpparvi/PyTransit

extra:
recipe-maintainers:
- hpparvi