Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
175fa352
Commit
175fa352
authored
Feb 01, 2016
by
Sylvain Corlay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a conda recipe for pybind11
parent
74982c3d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
1 deletions
+31
-1
MANIFEST.in
+0
-1
conda.recipe/bld.bat
+2
-0
conda.recipe/build.sh
+3
-0
conda.recipe/meta.yaml
+26
-0
No files found.
MANIFEST.in
View file @
175fa352
include setup.py
include include/pybind11/*.h
conda.recipe/bld.bat
0 → 100644
View file @
175fa352
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
conda.recipe/build.sh
0 → 100644
View file @
175fa352
#!/bin/bash
${
PYTHON
}
setup.py install
--single-version-externally-managed
--record
=
record.txt
;
conda.recipe/meta.yaml
0 → 100644
View file @
175fa352
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment