Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
175fa352
Commit
175fa352
authored
Feb 01, 2016
by
Sylvain Corlay
Browse files
Add a conda recipe for pybind11
parent
74982c3d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
1 deletion
+31
-1
MANIFEST.in
MANIFEST.in
+0
-1
conda.recipe/bld.bat
conda.recipe/bld.bat
+2
-0
conda.recipe/build.sh
conda.recipe/build.sh
+3
-0
conda.recipe/meta.yaml
conda.recipe/meta.yaml
+26
-0
No files found.
MANIFEST.in
View file @
175fa352
include setup.py
include include/pybind11/*.h
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