blob: adf7d3410178747e37de751186f44cbde4b5d361 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{% set name = "yolk3k" %}
{% set version = "0.9" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: cf8731dd0a9f7ef50b5dc253fe0174383e3fed295a653672aa918c059eef86ae
build:
number: 0
entry_points:
- yolk = yolk.cli:main
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
host:
- pip
- python
run:
- python
test:
imports:
- yolk
commands:
- yolk --help
about:
home: https://github.com/myint/yolk
license: BSD
license_family: BSD
license_file:
summary: Command-line tool for querying PyPI and Python packages installed on your system.
doc_url:
dev_url:
extra:
recipe-maintainers:
- your-github-id-here
|