Skip to content
Snippets Groups Projects
Commit 9f3d378c authored by Swen Vermeul's avatar Swen Vermeul
Browse files

Merge tag '0.0.1' into develop

First release version: 0.0.1
parents 5d6f81a8 eb4397f7
No related branches found
No related tags found
No related merge requests found
name = 'jupyter-openbis-extension.server'
__author__ = 'Swen Vermeul'
__email__ = 'swen@ethz.ch'
__version__ = '0.0.1'
def _jupyter_server_extension_paths(): def _jupyter_server_extension_paths():
return [{ return [{
"module": "jupyter-openbis-extension.server" "module": "jupyter-openbis-extension.server"
......
...@@ -4,23 +4,31 @@ import sys ...@@ -4,23 +4,31 @@ import sys
if sys.version_info < (3,3): if sys.version_info < (3,3):
sys.exit('Sorry, Python < 3.3 is not supported') 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( setup(
name='jupyter-openbis-extension', name='jupyter-openbis-extension',
version= '0.0.1', 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='Swen Vermeul | ID SIS | ETH Zürich',
author_email='swen@ethz.ch', author_email='swen@ethz.ch',
license='BSD', description='Extension for Jupyter notebooks to connect to openBIS and download/upload datasets, inluding the notebook itself',
packages=[ long_description=long_description,
'jupyter-openbis-extension', 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=[ install_requires=[
'jupyter', 'jupyter',
'pybis', '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",
],
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment