forked from olegtarasov/conda-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
52 lines (45 loc) · 1.38 KB
/
meta.yaml
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
43
44
45
46
47
48
49
50
51
52
{% set name = "conda-export" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/olegtarasov/{{ name }}/archive/v{{ version }}.tar.gz
#sha256: 2b3a0c466fb4a1014ea131c2b8ea7c519f9278eba73d6fcb361b7bdb4fd494e9
# sha256 is the preferred checksum -- you can get it for a file with:
# `openssl sha256 <file name>`.
# You may need the openssl package, available on conda-forge:
# `conda install openssl -c conda-forge``
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
entry_points:
- conda-export = conda_export:main
requirements:
host:
- python >=3.6
- pip
- setuptools
run:
- python >=3.6
- conda
test:
commands:
- conda-export -h
about:
home: https://github.com/olegtarasov/conda-export
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'Platform agnostic conda environment export'
description: |
An alternative to `conda env export` that helps create portable environment
specifications with minimal number of packages. Resulting specification is
similar to `conda env export --from-history`, but also includes packages
that were installed using `pip`.
doc_url: https://github.com/olegtarasov/conda-export
dev_url: https://github.com/olegtarasov/conda-export
extra:
recipe-maintainers:
- olegtarasov