Commit 175fa352 by Sylvain Corlay

Add a conda recipe for pybind11

parent 74982c3d
include setup.py
include include/pybind11/*.h
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
#!/bin/bash
${PYTHON} setup.py install --single-version-externally-managed --record=record.txt;
package:
name: pybind11
version: {{ environ.get('GIT_DESCRIBE_TAG', '') }}
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
{% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
{% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
source:
git_url: ../
requirements:
build:
- python
run:
- python
test:
imports:
- pybind11
about:
home: https://github.com/wjakob/pybind11/
summary: Seamless operability between C++11 and Python
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment