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

Add APtools #24761

Merged
merged 5 commits into from
Dec 17, 2023
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
53 changes: 53 additions & 0 deletions recipes/aptools/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set version = "0.2.4" %}

package:
name: aptools
version: {{ version }}

source:
url: https://github.com/AngelFP/APtools/archive/refs/tags/v{{ version }}.tar.gz
sha256: d382b6700668194d099c014b63c8e6d34cf0cb26cccc0a85daeef8a5883de8d2

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

requirements:
host:
- pip
- python >=3.6
- setuptools
run:
- deprecated
- h5py
- numpy
- openpmd-api
- python >=3.6
- scipy

test:
ax3l marked this conversation as resolved.
Show resolved Hide resolved
imports:
- aptools

about:
home: https://github.com/AngelFP/APtools
license: GPL-3.0-or-later
license_family: GPL3
license_file: LICENSE
summary: A collection of tools for accelerator physics

description: |
This package contains a set of tools to load and visualize the
contents of a set of openPMD files (typically, a timeseries).
The routines of openPMD-viewer can be used in two ways:
(1) Use the Python API, in order to write a script that loads
the data and produces a set of pre-defined plots.
(2) Use the interactive GUI inside the Jupyter Notebook, in
order to interactively visualize the data.
dev_url: https://github.com/AngelFP/APtools

extra:
recipe-maintainers:
- AngelFP
- ax3l