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

...

parent 1e8b0a5f
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100644
import sys
if sys.version_info < (3,3):
sys.exit('Sorry, Python < 3.3 is not supported')
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='jupyter-openbis-server',
version= '0.1.0',
author='Swen Vermeul | ID SIS | ETH Zürich',
author_email='swen@ethz.ch',
description='Server 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-server',
packages=find_packages(),
license='Apache Software License Version 2.0',
install_requires=[
'jupyter-nbextensions-configurator',
'jupyter',
'pybis>=1.9.5',
'numpy',
'tornado==5.1.1',
],
python_requires=">=3.3",
classifiers=[
"Programming Language :: Python :: 3.3",
"Programming Language :: JavaScript",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
data_files=[
# like `jupyter serverextension enable --sys-prefix`
("etc/jupyter/jupyter_notebook_config.d", [
"jupyter-config/jupyter_notebook_config.d/jupyter_openbis_extension.json"
])
],
zip_safe=False,
)
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