Skip to content

Commit

Permalink
Merge pull request #263 from SylvainCorlay/add-acknowledgement-section
Browse files Browse the repository at this point in the history
Add acknowledgements and uniformize copyright headers
  • Loading branch information
SylvainCorlay committed May 10, 2021
2 parents 6b228e3 + 8dc7ad9 commit d4339d3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ And build them:

`make html`

## Acknowledgements

The ipycytoscape project was started by [Mariana Meireles](https://github.com/marimeireles) at [QuantStack](https://quantstack/net). This initial development was funded as part of the [PLASMA](https://plasmabio.org) project, which is led by Claire Vandiedonck, Pierre Poulain, and Sandrine Caburet.

## License

We use a shared copyright model that enables all contributors to maintain the
Expand Down
3 changes: 3 additions & 0 deletions ipycytoscape/cytoscape.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
# coding: utf-8

# Copyright (c) 2020, QuantStack, Mariana Meireles and ipycytoscape Contributors
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.

import copy

Expand Down
5 changes: 4 additions & 1 deletion ipycytoscape/nbextension/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/usr/bin/env python
# coding: utf-8

# Copyright (c) Mariana Meireles
# Copyright (c) 2020, QuantStack, Mariana Meireles and ipycytoscape Contributors
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.


def _jupyter_nbextension_paths():
Expand Down
11 changes: 3 additions & 8 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.

// Entry point for the notebook bundle containing custom model definitions.
// Copyright (c) 2020, QuantStack, Mariana Meireles and ipycytoscape Contributors
//
// Setup notebook base URL
// Distributed under the terms of the Modified BSD License.
//
// Some static assets may be required by the custom widget javascript. The base
// url for the notebook is not known at build time and is therefore computed
// dynamically.
// The full license is in the file LICENSE, distributed with this software.

(window as any).__webpack_public_path__ =
document.querySelector('body')!.getAttribute('data-base-url') + // eslint-disable-line @typescript-eslint/no-non-null-assertion
Expand Down
4 changes: 4 additions & 0 deletions src/graph.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
// Copyright (c) 2020, QuantStack, Mariana Meireles and ipycytoscape Contributors
//
// Distributed under the terms of the Modified BSD License.
//
// The full license is in the file LICENSE, distributed with this software.

import { ISerializers, WidgetModel, WidgetView } from '@jupyter-widgets/base';

Expand Down

0 comments on commit d4339d3

Please sign in to comment.