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 mzspeclib #52187

Merged
merged 6 commits into from
Nov 20, 2024
Merged
Changes from 4 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
54 changes: 54 additions & 0 deletions recipes/mzspeclib/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "mzspeclib" %}
{% set version = "1.0.1" %}

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

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

build:
entry_points:
- mzspeclib = mzspeclib.tools.cli:main
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
run_exports:
- {{ pin_subpackage('mzspeclib', max_pin="x") }}

requirements:
host:
- python >=3.8
- setuptools
- pip
run:
- python >=3.8
- sqlalchemy
- click
- psims >=1.3.4
- pyteomics >=4.5.3
- mzpaf

test:
imports:
- mzspeclib
commands:
- pip check
- mzspeclib --help
requires:
- pip

about:
summary: HUPO-PSI Spectral library format
home: https://github.com/HUPO-PSI/mzSpecLib
license: CC-BY-4.0
license_family: CC
license_file: LICENSE
doc_url: https://mzspeclib-py.readthedocs.io/en/latest/
dev_url: https://github.com/HUPO-PSI/mzspeclib-py

extra:
recipe-maintainers:
- hechth
Loading