From afe32751a7145ef8f2b46b55b4a19fdce6373bde Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Mon, 10 Jul 2017 07:48:50 -0400 Subject: [PATCH] Add reprozip-jupyter conda recipe --- scripts/conda/reprozip-jupyter/meta.yaml | 67 ++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 scripts/conda/reprozip-jupyter/meta.yaml diff --git a/scripts/conda/reprozip-jupyter/meta.yaml b/scripts/conda/reprozip-jupyter/meta.yaml new file mode 100644 index 000000000..47fa3fbcd --- /dev/null +++ b/scripts/conda/reprozip-jupyter/meta.yaml @@ -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