master
/ miniconda3 / pkgs / conda-package-handling-2.1.0-py311h06a4308_0 / info / recipe / meta.yaml.template

meta.yaml.template @a663dc1

41a0142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
{% set name = "conda-package-handling" %}
{% set version = "2.1.0" %}

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

source:
  url: https://github.com/conda/conda-package-handling/archive/{{ version }}.tar.gz
  sha256: dcaa757fca94857420acd21b27d1ff6939e34522d196c3bafdd6dfed90559da5

build:
  number: 0
  skip: True  # [py<37]
  script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vv
  entry_points:
    - cph = conda_package_handling.cli:main

requirements:
  build:
    - python
  host:
    - python
    - pip
    - setuptools
    - wheel
  run:
    - python
    - conda-package-streaming >=0.7.0

test:
  source_files:
    - tests
  requires:
    - mock
    - pip
    - pytest
    - pytest-cov
    - pytest-mock
    - requests  # optional, here to please pip check
  imports:
    - conda_package_handling
    - conda_package_handling.api
  commands:
    - pip check
    - pytest -v --cov=conda_package_handling --color=yes tests/

about:
  home: https://github.com/conda/conda-package-handling
  dev_url: https://github.com/conda/conda-package-handling
  doc_url: https://conda.github.io/conda-package-handling/
  license: BSD-3-Clause
  license_family: BSD
  license_file:
    - LICENSE
  summary: Create and extract conda packages of various formats
  description: |
    cph is an abstraction of conda package handling and a tool for extracting, creating, and converting between formats.

extra:
  recipe-maintainers:
    - beckermr
    - dbast
    - dholth
    - jezdez