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

adding lixtools recipe #15648

Merged
merged 14 commits into from
Jul 20, 2021
50 changes: 50 additions & 0 deletions recipes/lixtools/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set name = "lixtools" %}
{% set version = "2021.6.9.0" %}
{% set sha256 = "d12e77bfc770ddb9137345c054a6c02afba29bac72768212615126b94b062c4b" %}

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

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

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

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- matplotlib
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved
- numpy
- openpyxl >=3
- pandas
- pillow
- py4xs
- python-barcode
- qrcode

test:
imports:
- lixtools
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved
commands: # [not win]
- python -c 'import os, pkg_resources; assert os.path.isfile(pkg_resources.resource_filename("lixtools", "plate_label_template.html"))' # [not win]
- python -c 'import os, pkg_resources; assert os.path.isfile(pkg_resources.resource_filename("lixtools", "template_report.ipynb"))' # [not win]
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved

about:
home: https://github.com/NSLS-II-LIX/lixtools
license: BSD-3-Clause
license_file: LICENSE
summary: Software tools for data collection/processing at NSLS-II LiX

extra:
recipe-maintainers:
- mrakitin
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved
- kbeeperez
- conda-forge/event-model
46 changes: 46 additions & 0 deletions recipes/py4xs/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "py4xs" %}
{% set version = "2021.6.2.1" %}
{% set sha256 = "052eda0c273e38844f1e828e9927abfdec4fe80041c81a8acff75e57b10b3db7" %}

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

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

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

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- fabio
- h5py
- matplotlib
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved
- numpy
- pillow
- scipy

test:
imports:
- py4xs
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved

about:
home: https://pypi.org/project/py4xs
license: MIT
license_file: LICENSE.txt
summary: py4xs - a python package for processing x-ray scattering data
dev_url: https://github.com/NSLS-II-LIX/py4xs

extra:
recipe-maintainers:
- mrakitin
kbeeperez marked this conversation as resolved.
Show resolved Hide resolved
- kbeeperez
- conda-forge/event-model