-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package: | ||
name: reprozip-jupyter | ||
version: !!str _REPLACE_version_REPLACE_ | ||
|
||
source: | ||
fn: reprozip-jupyter.tar.gz | ||
url: _REPLACE_url_REPLACE_ | ||
|
||
build: | ||
#preserve_egg_dir: True | ||
entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - reprounzip = reprounzip:main | ||
# | ||
# Would create an entry point called vistrails that calls vistrails.main() | ||
|
||
- reprozip-jupyter = reprozip_jupyter.main:main | ||
|
||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
# number: 1 | ||
string: _REPLACE_buildstr_REPLACE_ | ||
|
||
script: python setup.py install --single-version-externally-managed --record=record.txt | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
|
||
run: | ||
- python | ||
- rpaths >=0.8 | ||
- notebook | ||
- jupyter-client | ||
- nbformat | ||
- nbconvert | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- reprozip_jupyter.main | ||
|
||
commands: | ||
# You can put test commands to be run here. Use this to test that the | ||
# entry points work. | ||
|
||
- reprozip-jupyter --help | ||
|
||
# You can also put a file called run_test.py in the recipe that will be run | ||
# at test time. | ||
|
||
# requires: | ||
# Put any additional test requirements here. For example | ||
# - nose | ||
|
||
about: | ||
home: http://vida-nyu.github.io/reprozip/ | ||
license: BSD-3-Clause | ||
license_family: BSD | ||
summary: 'Jupyter Notebook tracing/reproduction using ReproZip' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |