From 92ff22253878491b32772c4174adc8ef88eef3b4 Mon Sep 17 00:00:00 2001 From: harryln-1 Date: Fri, 8 Nov 2024 08:34:30 +0000 Subject: [PATCH 1/2] Add lamps v1.0.3 --- recipes/lamps/meta.yaml | 53 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 recipes/lamps/meta.yaml diff --git a/recipes/lamps/meta.yaml b/recipes/lamps/meta.yaml new file mode 100644 index 0000000000000..0fc504457323e --- /dev/null +++ b/recipes/lamps/meta.yaml @@ -0,0 +1,53 @@ +{% set name = "lamps" %} +{% set version = "1.0.3" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/lamps-{{ version }}.tar.gz + sha256: c85de92edcb4cd450aeebcb829729f163a02b3905146ef5208f911f38f2abe63 + +build: + entry_points: + - lamp = lamp.__main__:main + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.8 + - setuptools >=61.0 + - wheel + - pip + run: + - python >=3.8 + - numpy + - scipy + - pandas + - pyside6 + - pyteomics + - openpyxl + - pyjanitor + +test: + imports: + - lamp + commands: + - pip check + - lamp --help + requires: + - pip + +about: + home: https://pypi.org/project/lamps/ + summary: Liverpool Annotation of metabolites using Mass Spectrometry + dev_url: https://github.com/wanchanglin/lamp + license: GPL-3.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - harryln-1 From b072818faa4ab5fd330ad251ef755f19a4a92636 Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Fri, 8 Nov 2024 20:14:02 +0200 Subject: [PATCH 2/2] Use SPDX --- recipes/lamps/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/lamps/meta.yaml b/recipes/lamps/meta.yaml index 0fc504457323e..46c79fa76b9b6 100644 --- a/recipes/lamps/meta.yaml +++ b/recipes/lamps/meta.yaml @@ -45,7 +45,7 @@ about: home: https://pypi.org/project/lamps/ summary: Liverpool Annotation of metabolites using Mass Spectrometry dev_url: https://github.com/wanchanglin/lamp - license: GPL-3.0 + license: GPL-3.0-or-later license_file: LICENSE extra: