Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jupyter-openbis-gui-widget
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
openbis
openbis-public
jupyter
jupyter-openbis-gui-widget
Commits
eb4397f7
Commit
eb4397f7
authored
6 years ago
by
Swen Vermeul
Browse files
Options
Downloads
Plain Diff
Merge branch 'release/0.0.1'
parents
5d6f81a8
8a6dba78
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
jupyter-openbis-extension/__init__.py
+5
-0
5 additions, 0 deletions
jupyter-openbis-extension/__init__.py
setup.py
+16
-8
16 additions, 8 deletions
setup.py
with
21 additions
and
8 deletions
jupyter-openbis-extension/__init__.py
+
5
−
0
View file @
eb4397f7
name
=
'
jupyter-openbis-extension.server
'
__author__
=
'
Swen Vermeul
'
__email__
=
'
swen@ethz.ch
'
__version__
=
'
0.0.1
'
def
_jupyter_server_extension_paths
():
return
[{
"
module
"
:
"
jupyter-openbis-extension.server
"
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
16
−
8
View file @
eb4397f7
...
...
@@ -4,23 +4,31 @@ import sys
if
sys
.
version_info
<
(
3
,
3
):
sys
.
exit
(
'
Sorry, Python < 3.3 is not supported
'
)
from
setuptools
import
setup
from
setuptools
import
setup
,
find_packages
with
open
(
"
README.md
"
,
"
r
"
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
'
jupyter-openbis-extension
'
,
version
=
'
0.0.1
'
,
description
=
'
Extension for Jupyter notebooks to connect to openBIS and download/upload datasets, inluding the notebook itself
'
,
url
=
'
https://sissource.ethz.ch/sispub/jupyter-openbis-integration
'
,
author
=
'
Swen Vermeul | ID SIS | ETH Zürich
'
,
author_email
=
'
swen@ethz.ch
'
,
license
=
'
BSD
'
,
packages
=
[
'
jupyter-openbis-extension
'
,
],
description
=
'
Extension for Jupyter notebooks to connect to openBIS and download/upload datasets, inluding the notebook itself
'
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
url
=
'
https://sissource.ethz.ch/sispub/jupyter-openbis-integration
'
,
packages
=
find_packages
(),
license
=
'
Apache Software License Version 2.0
'
,
install_requires
=
[
'
jupyter
'
,
'
pybis
'
,
],
python_requires
=
"
>=3.3
"
python_requires
=
"
>=3.3
"
,
classifiers
=
[
"
Programming Language :: Python :: 3.3
"
,
"
License :: OSI Approved :: Apache Software License
"
,
"
Operating System :: OS Independent
"
,
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment