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

Merge branch 'release/0.0.1'

parents 5d6f81a8 8a6dba78
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():
return [{
"module": "jupyter-openbis-extension.server"
......
......@@ -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",
],
)
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