forked from cytoscape/ipycytoscape
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 11f95b1
Showing
53 changed files
with
9,910 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,2 @@ | ||
[run] | ||
omit = ipycytoscape/tests/* |
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,156 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
.hypothesis/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
|
||
# Flask instance folder | ||
instance/ | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
docs/source/_static/embed-bundle.js | ||
docs/source/_static/embed-bundle.js.map | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# IPython Notebook | ||
.ipynb_checkpoints | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# dotenv | ||
.env | ||
|
||
# virtualenv | ||
venv/ | ||
ENV/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# ========================= | ||
# Operating System Files | ||
# ========================= | ||
|
||
# OSX | ||
# ========================= | ||
|
||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# Windows | ||
# ========================= | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
|
||
# NPM | ||
# ---- | ||
|
||
**/node_modules/ | ||
ipycytoscape/nbextension/static/index.* | ||
ipycytoscape/labextension/*.tgz | ||
|
||
# Coverage data | ||
# ------------- | ||
**/coverage/ | ||
|
||
# Packed lab extensions | ||
ipycytoscape/labextension |
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,7 @@ | ||
.DS_Store | ||
node_modules/ | ||
tests/ | ||
.jshintrc | ||
# Ignore any build output from python: | ||
dist/*.tar.gz | ||
dist/*.wheel |
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,74 @@ | ||
language: python | ||
python: | ||
- 3.7 | ||
- 3.6 | ||
- 3.5 | ||
sudo: false | ||
dist: xenial | ||
services: | ||
- xvfb | ||
addons: | ||
apt_packages: | ||
- pandoc | ||
env: | ||
matrix: | ||
- GROUP=python | ||
matrix: | ||
include: | ||
- python: 3.5 | ||
env: GROUP=js | ||
include: | ||
- python: 3.6 | ||
env: GROUP=docs | ||
cache: | ||
pip: true | ||
directories: | ||
- node_modules # NPM packages | ||
- $HOME/.npm | ||
before_install: | ||
- pip install -U pip setuptools | ||
- nvm install 8 | ||
- | | ||
if [[ $GROUP == python ]]; then | ||
pip install codecov | ||
elif [[ $GROUP == js ]]; then | ||
npm install -g codecov | ||
fi | ||
install: | ||
- | | ||
if [[ $GROUP == python ]]; then | ||
pip install --upgrade ".[test]" -v | ||
elif [[ $GROUP == js ]]; then | ||
pip install --upgrade -e ".[test]" -v | ||
elif [[ $GROUP == docs ]]; then | ||
pip install --upgrade ".[test, examples, docs]" -v | ||
fi | ||
before_script: | ||
# Set up a virtual screen for Firefox browser testing: | ||
- | | ||
if [[ $GROUP == js ]]; then | ||
export CHROME_BIN=chromium-browser | ||
fi | ||
git config --global user.email [email protected] | ||
git config --global user.name "Travis CI" | ||
script: | ||
- | | ||
if [[ $GROUP == python ]]; then | ||
EXIT_STATUS=0 | ||
pushd $(mktemp -d) | ||
py.test -l --cov-report xml:$TRAVIS_BUILD_DIR/coverage.xml --cov=ipycytoscape --pyargs ipycytoscape || EXIT_STATUS=$? | ||
popd | ||
(exit $EXIT_STATUS) | ||
elif [[ $GROUP == js ]]; then | ||
npm test | ||
elif [[ $GROUP == docs ]]; then | ||
EXIT_STATUS=0 | ||
cd docs | ||
make html || EXIT_STATUS=$? | ||
make linkcheck || EXIT_STATUS=$? | ||
cd .. | ||
python -m pytest_check_links --links-ext=.md -o testpaths=. -o addopts= || EXIT_STATUS=$? | ||
(exit $EXIT_STATUS) | ||
fi | ||
after_success: | ||
- codecov |
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,27 @@ | ||
Copyright (c) 2020 Mariana Meireles | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,39 @@ | ||
include LICENSE.txt | ||
include README.md | ||
|
||
include setupbase.py | ||
include pytest.ini | ||
include .coverage.rc | ||
|
||
include tsconfig.json | ||
include package.json | ||
include webpack.config.js | ||
include ipycytoscape/labextension/*.tgz | ||
|
||
# Documentation | ||
graft docs | ||
exclude docs/\#* | ||
prune docs/build | ||
prune docs/gh-pages | ||
prune docs/dist | ||
|
||
# Examples | ||
graft examples | ||
|
||
# Tests | ||
graft tests | ||
prune tests/build | ||
|
||
# Javascript files | ||
graft ipycytoscape/nbextension | ||
graft src | ||
prune **/node_modules | ||
prune coverage | ||
prune lib | ||
|
||
# Patterns to exclude from any directory | ||
global-exclude *~ | ||
global-exclude *.pyc | ||
global-exclude *.pyo | ||
global-exclude .git | ||
global-exclude .ipynb_checkpoints |
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,29 @@ | ||
|
||
# ipycytoscape | ||
|
||
[![Build Status](https://travis-ci.org/Quantstack/ipycytoscape.svg?branch=master)](https://travis-ci.org/Quantstack/ipycytoscape) | ||
[![codecov](https://codecov.io/gh/Quantstack/ipycytoscape/branch/master/graph/badge.svg)](https://codecov.io/gh/Quantstack/ipycytoscape) | ||
|
||
|
||
A Custom Jupyter Widget Library | ||
|
||
## Installation | ||
|
||
You can install using `pip`: | ||
|
||
```bash | ||
pip install ipycytoscape | ||
``` | ||
|
||
Or if you use jupyterlab: | ||
|
||
```bash | ||
pip install ipycytoscape | ||
jupyter labextension install @jupyter-widgets/jupyterlab-manager | ||
``` | ||
|
||
If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable | ||
the nbextension: | ||
```bash | ||
jupyter nbextension enable --py [--sys-prefix|--user|--system] ipycytoscape | ||
``` |
Oops, something went wrong.