Skip to content

Commit

Permalink
Merge pull request #28282 from hpparvi/meepmeep
Browse files Browse the repository at this point in the history
Added a recipe for the meepmeep package.
  • Loading branch information
ocefpaf authored Nov 20, 2024
2 parents b70c125 + b243034 commit de47d89
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions recipes/meepmeep/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "meepmeep" %}
{% set version = "0.6.4" %}
{% set python_min = "3.10" %}

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

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

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 }}
- numpy
- numba
- scipy
- matplotlib-base
- semantic_version

test:
imports:
- meepmeep
commands:
- pip check
requires:
- python {{ python_min }}
- pip

about:
home: https://github.com/hpparvi/MeepMeep
summary: 'Fast Keplerian orbit computation using Taylor series expansions.'
license: GPL-3.0-only
license_file: LICENSE

extra:
recipe-maintainers:
- hpparvi

0 comments on commit de47d89

Please sign in to comment.