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

optimised package for pypi, now displays README

parent d49efe52
No related branches found
No related tags found
No related merge requests found
175
\ No newline at end of file
......@@ -3,3 +3,4 @@
.ipynb_checkpoints/
*.ipynb
dist/*
deleteDatasetsAlreadyDeletedFromApplicationServerTaskLastSeen
name = 'pybis'
__author__ = 'Swen Vermeul'
__email__ = 'swen@ethz.ch'
__version__ = '1.7.2'
__version__ = '1.7.3'
from . import pybis
from .pybis import Openbis
......
......@@ -4,21 +4,21 @@ 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='PyBIS',
version= '1.7.2',
version= '1.7.3',
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',
packages=setuptools.find_packages(),
packages=find_packages(),
license='BSD',
install_requires=[
'pytest',
......
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