Skip to content

Added a recipe for nbinteract. #6565

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions recipes/nbinteract/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{% set name = "nbinteract" %}
{% set version = "0.2.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: c60adb3fa85dbd31d1092de2df58f6018b1c5e856988b272969dff8ab14edf21

build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"

requirements:
build:
host:
- python
- pip
run:
- python
- numpy >=1,<2
- ipython >=6,<7
- nbconvert >=5.3,<6
- traitlets >=4.3,<5
- bqplot >=0.10,<1
- ipywidgets >=7,<8
- toolz >=0.8,<1
- docopt >=0.6.2,<1
- nbformat >=4.4.0,<5

test:
imports:
- nbinteract
- nbinteract.cli
- nbinteract.exporters
- nbinteract.plotting
- nbinteract.preprocessors
- nbinteract.questions
- nbinteract.util

about:
home: http://www.nbinteract.com
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: 'Export interactive HTML pages from Jupyter Notebooks'

# The remaining entries in this section are optional, but recommended
description: |
nbinteract is a Python package that creates interactive webpages from
Jupyter notebooks. nbinteract also has built-in support for interactive
plotting. These interactions are driven by data, not callbacks, allowing
authors to focus on the logic of their programs.
doc_url: https://www.nbinteract.com/
dev_url: https://github.com/SamLau95/nbinteract

extra:
recipe-maintainers:
- moorepants