diff options
| author | Matt Rendina <mrendina@stsci.edu> | 2019-04-01 14:33:32 -0400 | 
|---|---|---|
| committer | Matt Rendina <mrendina@stsci.edu> | 2019-04-01 14:33:32 -0400 | 
| commit | 3f0aacd5fc0a7e3400ecfffb32513c97685425c2 (patch) | |
| tree | fc159b6bc4d16bef88968666a883b1f4066a487e /yolk3k | |
| parent | dddb6243dc5d5b1349ee2e93bb0632325969b266 (diff) | |
| download | astroconda-etc-3f0aacd5fc0a7e3400ecfffb32513c97685425c2.tar.gz | |
Add mechanicalsoup and yolk3k skeleton recipes.py3-recipes
Diffstat (limited to 'yolk3k')
| -rw-r--r-- | yolk3k/meta.yaml | 42 | 
1 files changed, 42 insertions, 0 deletions
| diff --git a/yolk3k/meta.yaml b/yolk3k/meta.yaml new file mode 100644 index 0000000..adf7d34 --- /dev/null +++ b/yolk3k/meta.yaml @@ -0,0 +1,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 | 
