mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-13 17:10:00 +08:00
42 lines
882 B
YAML
42 lines
882 B
YAML
{% set data = load_setup_py_data() %}
|
|
|
|
package:
|
|
name: zipline
|
|
version: {{ GIT_DESCRIBE_TAG|replace('v', '') }}
|
|
|
|
build:
|
|
number: {{ GIT_DESCRIBE_NUMBER|int }}
|
|
string: np{{ NPY_VER|replace('.', '') }}py{{ PY_VER|replace('.', '') }}_{{ (
|
|
GIT_BUILD_STR if GIT_DESCRIBE_NUMBER|int != 0 else '0'
|
|
) }}
|
|
|
|
source:
|
|
git_url: ../../
|
|
|
|
requirements:
|
|
build:
|
|
- python {{ PY_VER }}*
|
|
- libgfortran ==1 # [linux and (np == 19)]
|
|
{% for req in data.get('build_requires', []) -%}
|
|
- {{req}}
|
|
{% endfor %}
|
|
run:
|
|
- python
|
|
- libgfortran ==1 # [linux and (np == 19)]
|
|
{% for req in data.get('install_requires', []) -%}
|
|
- {{req}}
|
|
{% endfor %}
|
|
|
|
test:
|
|
# Python imports
|
|
imports:
|
|
- zipline
|
|
|
|
about:
|
|
home: https://zipline.io
|
|
license: Apache Software License
|
|
|
|
# See
|
|
# http://docs.continuum.io/conda/build.html for
|
|
# more information about meta.yaml
|