Newer
Older
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:
author='Swen Vermeul | ID SIS | ETH Zürich',
author_email='swen@ethz.ch',
description='openBIS connection and interaction, optimized for using with Jupyter',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://sissource.ethz.ch/sispub/openbis/tree/master/pybis',
install_requires=[
'pytest',
'requests',
'datetime',
'pandas',
'click',
'texttable',
'tabulate',
],
python_requires=">=3.3",
classifiers=[
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],